Width of the HTML table does not

my code is below

My html code is given below:


 
  
  Alerts
 
 
  


   
    
   
  

information: ABC


 
  
  
  
 
 
  
  
  
 
 
  
  
  
 
 
  
 
 
  
   
   
   
  
  
   
   
   
  
  
   
  
 
  
   
   
   
  
  
   
   
   
  
  
   
  
 
  
 
ReferenceUserValue of MSG
Type of MSG
100100284Super XYZ CO631
St last acknowledgement
500234587ABC STORES19
Test


 
 
  
 

   
    Home
   

  


 

gov000,

Your table is set to 100%, but the body and html have dimensions, so the table is unclear what means 100%.

Try this:

body,html{
    width:100%;
    height:100%;
}

table {
    width: 100%; /* or use table width="100" */
}

Tags: BlackBerry Developers

Similar Questions

  • LOV inside the inner table does not!

    Hello

    I have a Master Advanced Table and an internal Table (more advanced) retail. (I know it's a performance problem, but..)  :()

    I have a number of customer LOV in internal table. But when I select a row in the LOV I don't get the value returned to my return of goods. Page popup LOV just stay there without responding to any request post.

    I'm on 11.5.10 RUP4.

    Thank you
    Wine

    In my view, that this feature is not supported as indicated in the dev guide:

    "The inner table does not support LOVs. You must use a different user interface.

  • My html table does not appear on the 2nd tab on the Panel (muse widget)

    The same table works fine on the first tab, however when I try to click on the second table in the page mode or overview of the browser on browser, my table is not displayed. Tips to solve this problem?

    If I get this right, you use the tabbed panel widget to display an HTML table in each of the tabs. If this is the case, please make sure that you insert the HTML content on each content area of the tab respectively. To check this, switch between tabs in design mode to check your content.

    Thank you

    Vinayak

  • close the word table does not work

    I'm having trouble with the active x progrmaming with MS Word.  My VI simply runs through a directory and opens each word document and converts it to text and it accumulates in a table.  My problem is that MS word does not close each file after loading in each iteration.  What I am doing wrong?

    Use the method Close _Document as the last thing in the loop FOR (close the document of reference after). Also, you should get the collection of Documents only once BEFORE the loop FOR and close this thing first reference after the for loop. Before closing the _Application reference, you can use the Quit method to close Word and then close the _Application reference.

    Ben64

  • I have a html file and in it, I have a PHP contact form. However, the html code does not run php. pls help... Thank you

    I wrote a simple html Web page with menus and pull-down (using Dreamweaver) which also includes a contact form. The contact form is in PHP. However, when I run the html file, all right and that the contact form appears, however, she does not run PHP code. Do I have to make any changes of setting or download all the files? Thank you very much

    If you run your own apache server, then you need also a mail server, but if you use a hosted service then your host should have the scripts and HTML on their Web site.  Otherwise, you can use Wufoo free version and you can create your own form and code (JavaScript) that can be integrated into your HTML page. I used Wufoo in Joomla sites and it works very well.

  • ADF table refresh in the db table does not

    Hi people,

    I have an ADF table based on a table of db. It also has a box - a transitional attribute. When the button called, kicks historical method of a stored procedure to treat assets selected (from box). After that the ADF table should get updated based on the underlying table of the db. When the button is pressed, it calls a managed bean. Code in it is below. The moveAssets is a methodAction defined as PageDefinition links. Even though I have executequery on the iterator, it is not update / take into account changes in the db table. Could you please suggest me where I'm wrong?

    public void MoveAssetsbtnMtd (ActionEvent actionEvent) {}

    Add the code in the event here...

    BindingContext bctx = BindingContext.getCurrent ();

    Con DCBindingContainer = (DCBindingContainer) bctx.getCurrentBindingsEntry ();

    Note "moveAssets" is the Id of the link actionMethod in PageDefinition

    OperationBinding oper = con.getOperationBinding("moveAssets") (OperationBinding);

    Because the method takes a parameter, send the ToLocation to assign it with ParamsMap

    oper.getParamsMap () .put ("vToLoc", resolveExpression ("#{bindings.")) HZLocations1.attributeValue}'));

    oper.getParamsMap () .put ("Param2Name", "Param2Value");

    System.out.println ("Moving asset for:" + resolveExpression ("#{bindings.") "") HZLocations1.attributeValue}'));

    Execute a method

    Oper.Execute ();


    Look for the error after the execution of the method

    If (oper.getErrors () .size () > 0) {}

    Handle any error here

    System.out.println ("error in MoveAssetsbtnBean");

    }

    Update the table of the ADF of material movement hist table

    After you have moved the selected assets - 20150429

    DCBindingContainer links =.

    (DCBindingContainer) BindingContext.getCurrent () .getCurrentBindingsEntry ();

    DCIteratorBinding iter1 = binds.findIteratorBinding("AssetMove1Iterator");

    ITER1. ExecuteQuery();

    }

    Thank you

    It should be fair enough, yet can you check number of VO lines after the call to the stored procedure to ensure that the data is updated in ViewObject?

    and if t is not then when calling executeQuery on viewObject and then check again

    Ashish

  • Why the second table does not show?

    <? XML version = "1.0" encoding = "utf-8"? >
    " < = xmlns:mx mx:Application ' http://www.Adobe.com/2006/MXML "
    xmlns: Data = "" com.kg.Data. * ""
    Width = '100% '.
    Height = "100%".
    Initialize = "getParameterNumbers ()" "
    backgroundColor = "#FFFFFF" >

    < mx:Script >
    <! [CDATA]
    Import mx.rpc.events.FaultEvent;
    Import mx.rpc.events.ResultEvent;
    Import mx.collections.ArrayCollection;
    Import mx.charts.PieChart;
    Import mx.charts.series.PieSeries;
    Import mx.charts.Legend;
    import com.kg.data.ParameterCount;

    [Bindable]
    public var paramCount:ArrayCollection;

    Gets the initial set of data from the server
    private function getParameterNumbers (): void {}
    remoteObject.getParameterCount ();
    addSecondChart();
    }

    Manage the received message.
    private void resultHandler(event:ResultEvent):void {}
    paramCount = new ArrayCollection();
    var parameterResultData:ArrayCollection = ArrayCollection (event.result);
    var resultLength:Number = parameterResultData.length;
    for (var i: Number = 0; i < resultLength; i ++) {}
    var tempParamResult:ParameterCount = new ParameterCount();
    tempParamResult.name = parameterResultData.getItemAt (i) .name;
    tempParamResult.count = parameterResultData.getItemAt (i) .count;
    paramCount.addItem (tempParamResult);
    }
    }

    Manage a message error.
    private void faultHandler(event:FaultEvent):void {}
    statusTextArea.text += "received fault:"+ event.fault + '\n'; '.
    }


    public function addSecondChart (): void {}
    var chart: PieChart;
    var series: PieSeries.

    series = new PieSeries();
    series.nameField = "name";
    Series.Field = "count";
    Series.filters = [];

    table = new PieChart();
    chart.percentWidth = 100;
    chart.percentHeight = 100;
    chart.showDataTips = true;
    chart.dataProvider = paramCount;
    Chart.Series = [series];

    P1. AddChild (Chart);
    }

    []] >
    < / mx:Script >

    < mx:RemoteObject id = "remoteObject".
    destination = "pokerDataSource".
    result = "resultHandler (Event); »
    Fault = "FaultHandler (Event); "/ >


    < mx:HBox width = "100%" id = "topHBox" >
    < mx:VBox >
    < mx:PieChart id = "firstChart".
    dataProvider = "{paramCount}.
    showDataTips = "true".
    selectionMode = "unique."
    itemRollOverColor = "#FF0066" >
    < mx:series >
    < mx:PieSeries

    field = 'count '.
    field name = 'name '.
    labelPosition = "legend."
    / >
    < / mx:series >
    < / mx:PieChart >
    < mx:Legend dataProvider = "{firstChart}" / >
    < / mx:VBox >

    < mx:TextArea id = "statusTextArea".
    Width = '100% '.
    Height = "100%".
    backgroundAlpha = "0".
    focusAlpha = '0 '.
    Selectable = "false" / >
    < / mx:HBox >
    < mx:Panel id = "p1" / >
    < / mx:Application >

    Hi kavehg,

    I just wonder if you try to add the second table too early? You have

    Initialize = "getParameterNumbers ()" in your statement of app, then "

    getParameterNumbers (): void

    {
    remoteObject.getParameterCount ();
    addSecondChart();

    }

    Have you tried either

    (a) you put getParameterNumbers creationComplete rather initialize?

    (b) addSecondChart running on another manager of altogether, for example just put a button temporarily and run it on the click event.

    Maybe wrong, but just seems to me that the call may be all advance what p1 may have added chlildren?

    Richard

  • Partition table does not have a valid system partition

    I am working on a Dell XPS 420 computer for a customer.  She has Windows Vista installed on it (not sure what version of Vista).

    He's doing a loop, wherever it loads to the point where I can see the bottom and the mouse, but it stops there.  After 5 minutes of him sitting on this screen, it restarts, I can't access one of the Advanced menu F8.  I tried Safe Mode, and after that it loads the crcdisk it restarts, it does with Safe Mode, Mode safe mode with networking Mode and safe mode with command prompt.  I can't use the last known configuration because it will just try to load and eventually restart.

    Things I've tried is that I ran a diagnosis of hard drive and memory, and they both pass.

    I tried the repair with the regedit option and load the system hive in the registry.

    I tried the bootrec command.

    Well I put in a disk for Installation of Vista and choose the repair option.  I did the auto diagnosis and repair option (first choice I think) and I checked the report after he finished saying that it fixes itself and needed to restart (which he did not in fact)

    Well the result that came was that the Partition Table does not have a valid System Partition.

    I tried the bootrec command, and they all said it has repaired but it did not, when I tried to do the bootrec /rebuild he gave me the message "element not found".

    I ran a test diagnosis system and I received the following message

    System test
    error code 0146
    Msg error code 2000-0146
    MSG HDD 0 - self-test log contains previous errors. Given the code and can be used by the support message technology guide to help diagnose the problem.

    be honest, I just need to know if I need to replace the hard drive or not, it's for a customer.

    I did not see if the HDD is set to AHCI or SATA in the bios again, but I will when I get home today, but I would like some answers backup.

    Hi countryboyofal,

    I suggest that you contact Dell support for the outcome of the diagnostic system.

    http://support.Dell.com/support/topics/global.aspx/support/DellCare/contact_us?c=us&l=en&s=Gen&redirect=1

     

    I hope this helps!

    Halima S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Search in the af Date field: table does not

    Hello

    12.1.3 Jdev

    In my application, there are 6 pages. 3 of them have table with search and sort active areas. All parts of the table have the date field.

    When the page is loaded, the search for the Date field does not work (no popup the calendar will). When all action happens on the page, the search option is missing for the date field.

    When the page loads:

    1.JPG

    When you press on enter in the search field in the Date column:

    2.JPG

    Interestingly, this is one of those 3 pages has a tabbed region. This problem occurs only in the first tab, same functionality in other tabs work fine.

    I have tried to create another project and tried to reproduce the problem. But not able to replicate.

    What could be the problem?  I don't know what to check?

    I tried to create a new page without using the customTemplate and just tried to add not only one table. That also had the same problem.

    Let me know if I need to provide any other details.

    See you soon

    AJ

    You can try to remove facets TestDate column filter and see if that makes a difference.

    Also try to replace java.sql.Timestamp by oracle.jbo.domain.Timestamp

    Dario

  • Table 'dbc_user' in the descriptor of the item: 'user' does not exist in a space of accessible table by the data source.

    In my development environment, when I run the production server, I get the following error in the server.log. I have configured the data source for the production. I use ATG 10.1. Please help solve this problem. Here are the logs

    22:46:45, 765 full repository INFO [ProfileAdapterRepository] SQL boot

    22:46:45, 988 full repository INFO [AdminSqlRepository] SQL boot

    22:46:45, 990 Initializing INFO [AdminAccountInitializer] account database/atg/dynamo/security/AdminAccountManager of/atg/dynamo/security/SimpleXmlUserAuthority

    22:46:46, 450 ERROR [ProfileAdapterRepository] Table 'dbc_user' in the descriptor of the item: 'user' does not exist in a space of accessible table by the data source.  DatabaseMetaData.getColumns returns without columns.  Catalog = null Schema = null

    22:46:46, 466 WARN [ProfileAdapterRepository] atg.adapter.gsa.GSARepository-> loadColumnInfo: SQLException in Table.loadColumnInfo.  Try again.

    com MySQL.JDBC.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'atgcoredb.dbc_user' does not exist

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)

    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)

    at java.lang.reflect.Constructor.newInstance(Constructor.java:525)

    at com.mysql.jdbc.Util.handleNewInstance(Util.java:407)

    at com.mysql.jdbc.Util.getInstance(Util.java:382)

    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1052)

    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3603)

    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3535)

    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1989)

    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2150)

    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2620)

    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2570)

    at com.mysql.jdbc.StatementImpl.executeQuery(StatementImpl.java:1476)

    to com.mysql.jdbc.DatabaseMetaData$ 7.forEach(DatabaseMetaData.java:3966)

    at com.mysql.jdbc.IterateBlock.doForAll(IterateBlock.java:51)

    at com.mysql.jdbc.DatabaseMetaData.getPrimaryKeys(DatabaseMetaData.java:3950)

    at atg.adapter.gsa.Table.loadColumnInfo(Table.java:1926)

    at atg.adapter.gsa.GSARepository.loadColumnInfos(GSARepository.java:7534)

    to atg.adapter.gsa.GSARepository$ 1.run(GSARepository.java:5431)

    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:603)

    at java.lang.Thread.run(Thread.java:722)

    22:46:46, 467 WARN [ProfileAdapterRepository] unknown JDBC type for property: businessAddress, element type: user. Make sure that the column names in the database and match model.  The business_addr column is not found in the set of columns returned by the database: {} for this table.

    22:46:46, 470 ERROR [ProfileAdapterRepository] Table 'dbc_buyer_billing' in the descriptor of the item: 'user' does not exist in a space of accessible table by the data source.  DatabaseMetaData.getColumns returns without columns.  Catalog = null Schema = null

    22:46:46, 470 WARN [ProfileAdapterRepository] atg.adapter.gsa.GSARepository-> loadColumnInfo: SQLException in Table.loadColumnInfo.  Try again.

    com MySQL.JDBC.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'atgcoredb.dbc_buyer_billing' does not exist

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)

    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)

    at java.lang.reflect.Constructor.newInstance(Constructor.java:525)

    at com.mysql.jdbc.Util.handleNewInstance(Util.java:407)

    at com.mysql.jdbc.Util.getInstance(Util.java:382)

    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1052)

    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3603)

    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3535)

    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1989)

    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2150)

    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2620)

    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2570)

    at com.mysql.jdbc.StatementImpl.executeQuery(StatementImpl.java:1476)

    to com.mysql.jdbc.DatabaseMetaData$ 7.forEach(DatabaseMetaData.java:3966)

    at com.mysql.jdbc.IterateBlock.doForAll(IterateBlock.java:51)

    at com.mysql.jdbc.DatabaseMetaData.getPrimaryKeys(DatabaseMetaData.java:3950)

    at atg.adapter.gsa.Table.loadColumnInfo(Table.java:1926)

    at atg.adapter.gsa.GSARepository.loadColumnInfos(GSARepository.java:7534)

    to atg.adapter.gsa.GSARepository$ 1.run(GSARepository.java:5431)

    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:603)

    at java.lang.Thread.run(Thread.java:722)

    22:46:46, 471 WARN [ProfileAdapterRepository] unknown JDBC type for the property: myBillingAddrs, element type: user. Make sure that the column names in the database and match model.  The addr_id column is not found in the set of columns returned by the database: {} for this table.

    22:46:46, ERROR 611 [ProfileAdapterRepository] Table 'dbc_org_billing' in the descriptor of the item: "organization" does not exist in a space of accessible table by the data source.  DatabaseMetaData.getColumns returns without columns.  Catalog = null Schema = null

    22:46:46, 611 WARN [ProfileAdapterRepository] atg.adapter.gsa.GSARepository-> loadColumnInfo: SQLException in Table.loadColumnInfo.  Try again.

    com MySQL.JDBC.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'atgcoredb.dbc_org_billing' does not exist

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)

    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)

    at java.lang.reflect.Constructor.newInstance(Constructor.java:525)

    at com.mysql.jdbc.Util.handleNewInstance(Util.java:407)

    at com.mysql.jdbc.Util.getInstance(Util.java:382)

    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1052)

    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3603)

    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3535)

    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1989)

    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2150)

    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2620)

    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2570)

    at com.mysql.jdbc.StatementImpl.executeQuery(StatementImpl.java:1476)

    to com.mysql.jdbc.DatabaseMetaData$ 7.forEach(DatabaseMetaData.java:3966)

    at com.mysql.jdbc.IterateBlock.doForAll(IterateBlock.java:51)

    at com.mysql.jdbc.DatabaseMetaData.getPrimaryKeys(DatabaseMetaData.java:3950)

    at atg.adapter.gsa.Table.loadColumnInfo(Table.java:1926)

    at atg.adapter.gsa.GSARepository.loadColumnInfos(GSARepository.java:7534)

    to atg.adapter.gsa.GSARepository$ 1.run(GSARepository.java:5431)

    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:603)

    at java.lang.Thread.run(Thread.java:722)

    22:46:46, 612 WARN [ProfileAdapterRepository] unknown JDBC type for the property: myBillingAddrs, element type: Organization. Make sure that the column names in the database and match model.  The addr_id column is not found in the set of columns returned by the database: {} for this table.

    You want to run the B2BCommerce module? If so, then you must run the $dynamo_home /... / B2BCommerce/SQL/db_components/MySQL/b2b_user_ddl. SQL ddl because you are missing the B2BCommerce tables. If this isn't the case, you will have to redo without the B2BCommerce module.

    Thank you

    Joe

  • Hide the line of adf table based on the transient attribute does not

    I have a JSF page where the user can insert new line in View object . this View object contains a transitional attribute which indicates whether or not the record is newly created.

    On the same page, I have a table adf which is bounded on the city view object . This table should show only newly created records. my approach is to use expression language of in the renditions property to hide all the other lines that are not newly created. I changed the render property for the columns of the table as: rendered="#{row.bindings.RowStatus.inputValue eq'new'}" , but the table does not show anything.

    Then, I tried to change the made not for the column property, but to the outputText inside the same way. It worked, but the problem is that the blank line is always on display.

    So, basically because I do not hide the entire line, instead I'm hiding the text in the lines and lines with spaces empty is still on display in the page aside.

    The Table of JSF page where the made property is applied on outputText inside the column:

    <af:table value="#{bindings.UplodedFilesView1.collectionModel}" var="row"
      rows
    ="#{bindings.UplodedFilesView1.rangeSize}"
      binding
    ="#{CreatSR_UserBean.fileTable}">

      
    <af:column sortProperty="#{bindings.UplodedFilesView1.hints.FileName.name}"
      headerText
    ="File Name" id="c1">

      
    <af:outputText value="#{row.bindings.FileName.inputValue}" id="it1"
      rendered
    ="#{row.bindings.RowStatus.inputValue eq'new'}"/>

      
    </af:column>

      
    </af:table>

    I use Jdeveloper with ADF technology 11.1.2.3

    Thanks Timo,

    You are right. Its to late to hide lines after stamping in the row set. I solve the problem by filtering the view object, based on the transitional attribute in the section of liaison page. The steps as follows: (assuming that the object from view with the temporary attribute has been created, and the transient attribute contains the filtered values)

    1. Drag the view object on the page and also make the Table (in my case it might otherwise listen)
    2. On the page, go to the connection tab.
    3. Double-click the object desired in the links column.
    4. New window will appear titled with (change the binding tree)
    5. Check the option (enable filtering)
    6. Select the (filter attribute) and (filter value) for the selected filter attribute.
    7. Select (Display attribute) you want to appear in the page.
    8. Press OK
  • a key for the table does not exist in the table

    Hi guys,.

    I imported several tables of physical layer in the administration tool. So, I want to do new foreign key between tables join in the physical schema.
    Required fields for posting a link between these tables are set up. When I press the ok button, an error message is displayed:
    "a key corresponding to the table does not exist in the table blablabla. You want to create a? »

    In fact, what is this error? I don't have all the idea about it. The number of the type of the fields is the same, the names are also the same. I think that he should not have problems to make the new foreign key. But why is it happening?

    Thank you

    Hello

    It is the primary key of the first table. You might not have set this column as the primary key of this table at the level of the db.

    Thank you
    Imtiaz.

  • "Include the header row in the following Pages" does not work for the table

    Hello

    I use the 8.1.2.3337.1.509884 version.

    Pagnation function "include header line in the following Pages" does not work for any table in my design. (the check box cannot be verified little matter how many times I click it)

    I put such table already in a bodypage flow.

    Any reported similar problem?

    Any suggestions?

    Thank you.

    -Vicky

    The only thing I can think is that your table is not in a subform flowed. Who will stop the check boxes.

  • Maximum width on a text box does not prevent the user from typing too

    I have a text box with the field of the item to a width of 100, a maximum width of 240 and a height of 5. A user can type more than 240 characters on the screen (it does not seem to cut at any time) and then when they run they get an error of area too long given that the DB has only 240 tanks. (they can also copy and paste more than 240 characters here too)

    Is there anything else I need to do to make the field stop accepting characters after 240? I know I can cut the field before you save it in order to prevent the error, but want it so that the user can just walk more than they should.

    APEX 3.1, oracle 10g.

    Hi mimi,

    Make a "* Textarea character counter with *" rather than a normal text box. It will then work. If you want you can even use ' Textarea character Counter and check the spelling.

    Watch Ben always overload things: P

    Mike

  • Ok.  The printable tutorial does not seem to explain how to add layouts replacing / screens. It has been my intention add additional provisions / screens once the basic site became operational. Can you help me?

    Ok. I have a handle on my site with the publishing refresh in the browser. Yet to learn though. The printable tutorial does not seem to explain how to add layouts replacing / screens. It has been my intention add additional provisions / screens once the basic site became operational. Can you help me?

    Please specify a little more than if you are referring to versions available phone/tablet of the site you want to add to your site from Muse.

    These links would be useful:

    http://helpx.Adobe.com/Muse/tutorials/creating-mobile-layout-designs-Muse.html

    TS http://TV.adobe.com/watch/Muse-Feature-Tour/Adobe-Muse-Designing-for-Smartphones-and-table.

    https://www.YouTube.com/watch?v=_Bq1hViogS4

    Thank you

    Sanjit

Maybe you are looking for