Id for TextInput in Datagrid

Hi ,
I am using item renderer for textinput inside a datagrid. But
it is not allowing me to give Id for the textinput.
I have filter function where i need to use the TextInput id.
Can anyone plss help me out in this regard.
<mx:DataGrid id="dataGrid" bottom="10" top="38"
right="10" left="10">
<mx:columns>
<mx:DataGridColumn headerText="Name" dataField="name">
<mx:itemRenderer>
<mx:Component>
<mx:TextInput change="searchLog()"
id="txtSearchLog1"/>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
<mx:DataGridColumn headerText="Description"
dataField="desc"/>
<mx:DataGridColumn headerText="Value"
dataField="val"/>
</mx:columns>
</mx:DataGrid>
I need to access txtSearchLog1...
Thx in advance

Hi it dint work..can u plss give me other solution..i m
getting Access of undefined property txtSearchLog1.
my code is
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute" backgroundGradientColors="[#f3f3f3, #ffffff]"
initialize="initApp()" >
<mx:Script>
<![CDATA[
import mx.controls.dataGridClasses.DataGridColumn;
import mx.collections.ArrayCollection;
public var gridData:ArrayCollection;
private var colDataNames:Array = new Array();
private function initApp():void
gridData = new ArrayCollection();
gridData.addItem({name:"Matt", desc:"Matthews",
val:"[email protected]"});
gridData.addItem({name:"appu", desc:"aparajitha",
val:"[email protected]"});
gridData.addItem({name:"krish", desc:"krishna",
val:"[email protected]"});
loadData();
drawGrid();
// creating an array collection with column names and
mapping data
public var gridColumns:ArrayCollection= new
ArrayCollection([
{colname:"Name",coldata:"name"},
{colname:"Description",coldata:"desc"},
{colname:"Value",coldata:"val"},
// draws the grid columns
public function drawGrid():void{
var coldescriptor:ArrayCollection = gridColumns;
for(var i:int;i<coldescriptor.length;i++){
colDataNames.push(coldescriptor
.coldata);
// refreshed the dataprovider for the search
private function searchLog():void{
gridData.refresh();
// loads the data
public function loadData():void{
dataGrid.dataProvider = gridData;
setSearchFunction(searchData);
// sets the filter function to dataprovider
public function
setSearchFunction(searchFunction:Function):void{
gridData.filterFunction = searchFunction;
// fired on text change, returns the text typed
public function getSearchText1():String{
return txtSearchLog1.text;
// searches the data based on simle string search
private function searchData(item: Object):Boolean{
//for(var i:int=0;i<colDataNames.length;i++){
if(item[colDataNames[0]].toString().toLowerCase().indexOf(txtSearchLog1.text.toLowerCase( ))
!= -1){
return true;
return false;
]]>
</mx:Script>
<mx:Canvas width="100%" height="100%">
<mx:Label x="10" y="12" text="Search"/>
<mx:DataGrid id="dataGrid" bottom="10" top="38"
right="10" left="10">
<mx:columns>
<mx:DataGridColumn headerText="Name" dataField="name">
<mx:itemRenderer>
<mx:Component>
<mx:Canvas>
<mx:TextInput change="parentDocument.searchLog()"
id="txtSearchLog1"/>
</mx:Canvas>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
<mx:DataGridColumn headerText="Description"
dataField="desc"/>
<mx:DataGridColumn headerText="Value"
dataField="val"/>
</mx:columns>
</mx:DataGrid>
</mx:Canvas>
</mx:Application>
thx in advance..

Similar Messages

  • [svn:fx-trunk] 8136: Adjustments to default size and padding for TextInput and TextArea skins.

    Revision: 8136
    Author:   [email protected]
    Date:     2009-06-23 16:16:49 -0700 (Tue, 23 Jun 2009)
    Log Message:
    Adjustments to default size and padding for TextInput and TextArea skins.
    TextInput default with is big enough to hold 10 characters (it will actually hold more than 10 "normal width" characters)
    TextArea padding matches TextInput padding
    These changes are done to the Spark and Wireframe skins.
    Bugs: SDK-16300 & SDK-16294
    QE Notes: New baseline bitmaps are needed (sorry Peter!)
    Doc Notes: None
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-16300
        http://bugs.adobe.com/jira/browse/SDK-16294
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/TextAreaSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/TextInputSkin.mxml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/TextAreaSkin.mxml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/TextInputSkin.mxml

  • CS6 breaks ActionScript 2.0 projects. No var property for TextInput or Label.

    I've been programming for years, but I'm brand new to Flash. For various reasons, I need to learn ActionScript 2.0 instead of 3.0. All I could get from Adobe's website is the trial for CS6.
    When I look at tutorials for AS2, controls such TextInput and Label are supposed to have a variable associated with them. Then in code, one can simply get/set that variable to read/change the control's contents. For example: http://youtu.be/H_TEa6i2Bhk?t=2m57s
    However, in CS6, TextInput and Label controls have no such "var" property that I can find. After hours with no luck, I decided to download examples of AS2 projects and open them up to see how they look. Here's one I tried: http://www.freeactionscript.com/2009/07/endless-parallax-scrolling/
    Notice at the bottom of the flash window are labels for the x and y speed that change dynamically as you use the arrow keys. The zip contains both the .fla and .swf file. When I run the .swf file, it works fine. When I open the .fla file in Flash Pro CS6 and hit Ctrl+Enter (which overrites the .swf file), everything works EXCEPT the labels no longer update. The overwritten .swf file no longer works correctly either, as expected.
    I tried this on several other examples and in each case any Label or TextInput controls no longer worked correctly. When I go to File->ActionScript Settings, it says ActionScript 2.0. What am I doing wrong?

    Thank you, that was very helpful. I like this approach more anyway because it seems more like... normal programming, if you know what I mean.
    Anyway, I've noticed some inconsistency in how you set up event handlers. For a button you can do:
    button.addEventListener("click", click);
    function click(e:Object):Void {...}
    button.onRelease = function() {...}
    button.onRelease = click;
    function click(e:Object):Void {...}
    For 1, you have a named function that can be the event handler for multiple objects, and you get a reference to the event which has a reference to the object when the handler is called. For 2, however, there is no reference, so you can't check out the state of the sender. 3 will partially work, that is, the function will be assigned as a handler, but any use of "e" in the body will not work.
    So the part that's bothering me the most about this is that I cannot reliably find a list of events in string form for controls. For button, there is a list in "on####" form here: http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=00000820.html, but nowhere on that page does it mention button.addEventListener("click", click). That is arguably the more useful form, but I only know that exists because I've seen it in examples.
    For TextInput, there is this list: http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=00002922.html, which shows TextInput.change and TextInput.enter. When you click on those, it shows examples using TextInput.addEventListener("enter", listener).
    This inconsistency concerns me. Is "click" the only string form event for button? If there are more, how do I find them. In fact, how should I have found it in the first place? None of the "on####" forms use the word "click", so I may never have guessed to use that word.
    So how do I find the full lists of events in both forms for all controls?

  • WordWarp for  TextInput

    hi
    i m working on a chat application, i have problem for
    TextInput.... as i m using TextInput as a user to enter their
    messages.....if when user enter long text then it should be warped
    to next line.......but it is not doing so... and i cannot got any
    wordWarp property for TextInput control... and one more thing i
    cannot use TextArea fot this.....as it makes prob for me in some
    other issues.
    so please is there any way to set wordwarp fot TextInput??
    Thanks in advance
    shrikant

    hi,
    i m using textArea instead of inputText...... for NOW.
    i explain what is the prob i m facing using this
    textArea...... user enter the message to send in textArea...... and
    there is a button "send", there are two events can happen.....1.
    they may click on send, 2. they may hit "Enter key"... right!!
    if they click mouse on "send" button then there is no prob.
    if they hit "enter" key........ then message commonely send
    as per code..... but u know what happnes if u have curson in
    textArea and u hit "enter" key.... it takes the cursor to next
    line...........means after sending the message......the cursor
    stays at second line......(as this not happen if we use
    inputText).....
    this is what real thing.......
    hope u may help me...
    thanks

  • Populate textInput from DataGrid

    Please help!
    My DataGrid has "FIELD_NAME" and "FIELD_VALUES" columns.
    My TextInput objects has to match id names from "FIELD_NAME"
    columns, and populate value from "FIELD_VALUES" column into text.
    How I can do this?
    Thank you very much!
    Slava

    Sorry for the messed up cut and paste.
    private function itemClickEvent(event:ListEvent):void
    if(event.columnIndex < 0)
    //can't do anything
    else
    var
    selectedVIPName:String=event.currentTarget.selectedItem.VIPName;
    var
    selectedVIPAddress:String=event.currentTarget.selectedItem.VIPAddress;
    var
    selectedExternalAddress:String=event.currentTarget.selectedItem.ExternalAddress;
    var selectedvid:String=event.currentTarget.selectedItem.vid;
    vipname_inp.text=String(selectedVIPName);
    vipaddress_inp.text=String(selectedVIPAddress);
    external_inp.text=String(selectedExternalAddress);
    vid_inp.text=String(selectedvid);
    <mx:DataGrid id="dg" dataProvider="{lc}" width="100%"
    height="100%" rowHeight="20" itemClick="itemClickEvent(event);"
    >
    <mx:columns>
    <mx:DataGridColumn headerText="VID" dataField="vid"
    visible="False" />
    <mx:DataGridColumn headerText="VIP Name"
    dataField="VIPName" />
    <mx:DataGridColumn headerText="VIP Address"
    dataField="VIPAddress"/>
    <mx:DataGridColumn headerText="External Address"
    dataField="ExternalAddress"/>
    </mx:columns>
    </mx:DataGrid>

  • Search on TextInput with DataGrid

    Hello...
    How is the function for search a word and quickly find on datagrid...
    I have code this:
    <mx:FormItem label="Find">
    <mx:TextInput width="402" id="find" change="read_gestione_menu.send()"/>
    </mx:FormItem>
    <mx:DataGrid id="lettura_gm" width="499" height="317" creationComplete="read_gestione_menu.send()" dataProvider="{read_gestione_menu.lastResult.users.user}">
    <mx:columns>
    <mx:DataGridColumn headerText="" dataField="id_gm" itemRenderer="mx.controls.CheckBox" rendererIsEditor="true"/>
    <mx:DataGridColumn headerText="Data" dataField="data"/>
    <mx:DataGridColumn headerText="Titolo" dataField="titolo"/>
    <mx:DataGridColumn headerText="Pos." dataField="posizione"/>
    <mx:DataGridColumn headerText="" dataField="pubblicare"/>
    </mx:columns>
    </mx:DataGrid>
    mx:HTTPService id="read_gestione_menu" method="POST" url="programs/gestione_menu.php" useProxy="false" />
    What Have i misted?

    what parameters are you tryin to send? I do not see ny thing being sent .

  • UIX/XML:  Layout for textInput controls

    I need to render a number of textInput UIX beans (and comboboxes a.s.o.) together with a label and render a small icon right next to it. Now that itself is not a problem, but I want the labels and the controls to be aligned in the following way:
    LLLLLLL TTTTT I
    LLL TTTTTTTTT I
    LLLLLL TT I
    Is there any way to achieve that with the messageTextInput bean?
    I tried using the normal textInput beans together with a styled text in a tableLayout. This displays nicely, but whenever a validator fails a messagebox is displayed that says something like:
    value required in ""
    That makes validators completely unusable.
    Any idea how to get the layout right and have meaningful validator messages?
    Actually I would strongly prefer using the messageTextInput bean, since it does so many nice things for me...

    The messageTextInput bean adheres to the BLAF, which state that labels should be right aligned.
    You can do what you are trying to do by using a messagePrompt and a textInput. Make sure to set "id" on textInput uniquely, and labeledNodeId on messagePrompt to match. This will allow the validators to use the prompt attribute to display an understandable message. You can put your information inside of a tableLayout to get it to align the way you want.
    Here is an example:
    <styledText styleClass="OraHeaderSubSub" text="message Prompt with text Input"/>
    <tableLayout     cellSpacing="5">
    <contents>                                        
    <rowLayout >
    <contents >                                   
    <cellFormat hAlign="left" >
    <contents>
    <messagePrompt prompt="Enter a number" labeledNodeId="messageOne" required="yes"/>
    </contents>
    </cellFormat>
    <cellFormat hAlign="left">
    <contents>
    <textInput id="messageOne" text="5" >
    <onBlurValidater>
    <decimal />
    </onBlurValidater>
    </textInput>
    </contents>
    </cellFormat>
    </contents>
    </rowLayout>
    <rowLayout >
    <contents >
    <cellFormat hAlign="left" >
    <contents>
    <messagePrompt prompt="label" labeledNodeId="messageTwo" required="yes"/>
    </contents>
    </cellFormat>
    <cellFormat hAlign="left" >
    <contents>
    <textInput id="messageTwo" text="value" message="message" >
    <onBlurValidater>
    <decimal />
    </onBlurValidater>
    </textInput>
    </contents>
    </cellFormat>
    </contents>
    </rowLayout>
    </contents>
    </tableLayout>

  • Can I create a custom scrollbar for my spark datagrid

    Basically I'm trying to customize the look of my spark datagrid.
    I'd like to change the header appearance and I'd also like to create a custom scrollbar.
    If only Catalyst would implement a custom datagrid component. I mean the datagrid is a very popular component, isn't it?
    Thanks
    kristin

    You need the password for free apps as well as for paid apps. The only ways that you can control what your child downloads is for you to supervise while the downloading is taking place or by totally restricting download apps with restrictions.
    When you enter your password and download content, you have 15 more minutes to continue downloading before you have to enter the password again. So if you download and app - then give the iPad to your child - he or she can continue downloading apps or music or any content for the next 15 minutes without any restrictions. IF you sign out of your account, then the child can no longer download. IMHO - You should NOT give your password to your child. That really is not a good practice.
    You can set restrictions on the iPad so that the child cannot download any apps at all. Go to Settings>General>Restrictions>On. Then you will have to enter a passcode for the device which you do not want to forget (if you do, you have to restore the device) so if you do this remember your passcode. You can then go to the apps settings within the restrictions and Enable Restrictions and turn off Installing Apps.
    This article will provide more information for you.
    http://netsecurity.about.com/od/frequentlyaskedquestions/a/How-To-Setup-Parental -Controls-On-An-Ipad-Ipod-Touch-Or-Iphone.htm

  • Non-editable Color for TextInput

    Hi,
    Is it possible to set up, in a CSS, the backgroundColor of a
    readonly text input?
    So whenever it's set to readonly (editable=false) its
    background will automatically
    change to the color set up in the CSS.
    I want to do something like this:
    TextInput{
    theme-color:haloGreen;
    color:#005FA9;
    readonly-color:0xF5F5F5; // or "non-editable-color"
    Cheers,
    Jarrod...

    you must completely fill in the background in a non-opaque color.
    I doubt the 'non-opaque color' part might be a typoI think it is a typo, otherwise, like you, I don't know what they are trying to say.
    Just using setOpaque(true), does NOT make a component opaque. It simply tells the the RepaintManger not to search the ancestor tree to find an opaque component. This makes painting more efficient if it doesn't need to search all the way up to the content pane of the window. By setting the opaque property you are guaranteeing that the component will paint its own background in an opaque color.
    For example a JPanel is opaque and its paintComponent() method will invoke the fillRect(...) method to paint the background whatever color is specified by the setBackground() method.
    So if you do panel.setBackground(Color,RED) this is valid.
    However, if you do panel.setBackground( new Color(255, 0, 0, 128) ); this is invalid because you have set a background with an alpha value that results in a transparent color. In this case you will generally see artifacts in the background of the panel. If you want to do this, then you must also use setOpaque(false), so that the background of the ancestor component is painted first.
    Edited by: camickr on Jul 8, 2008 11:18 AM
    Fixed an incorrect reference from "non-opaque" to "opaque".

  • Context/NativeMenu for TextInput

    Hi all,
    I'm reading articles and forum topics for hours and can't figure out how to add a contextmenu to an inputtext :/
    The situation : I want when the user right click inside a textinput, a context menu shows up. (I'm working in AIR)
    What I've managed to do : right-click on the textinput (the border not inside) show the contextmenu but it is definitely not usable...
    Here is my inputtext which is inside a VGroup :
    <s:TextInput id="ownerText" text="{characterGrid.selectedItem.owner}" widthInChars="7"/>
    And a very simple code in creationComplete :
         var cm:NativeMenu = new NativeMenu();
         var itemMenu:NativeMenuItem = new NativeMenuItem("Goto");
         itemMenu.addEventListener(Event.SELECT, gotoFromNativeMenu);
         cm.addItem(itemMenu);
         ownertxt.contextMenu = cm;
    I tried with both NativeMenu and ContextMenu but same thing... Also
    I tried also this :
          var txt:TextField = ownerText.mx_internal::getTextField() as TextField;
          txt.contextMenu = cm;
    but it show me an error saying that getTextField is not found and it doesn't work either.
    Thanks for any help, i really need this feature :/

    Assign custom ContextMenu instance to "textInput.textDisplay" instance, not to textInput itself, it will help in Flex 4.1
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                           xmlns:s="library://ns.adobe.com/flex/spark"
                           xmlns:mx="library://ns.adobe.com/flex/mx"
                           xmlns:local="*"
                           creationComplete="onCreationComplete()">
        <fx:Script>
          <![CDATA[
                protected function onCreationComplete():void
                    var menuLabel : String = 'Change Color';
                    var menuItem:ContextMenuItem = new ContextMenuItem(menuLabel);
                    var customContextMenu:ContextMenu = new ContextMenu();                                              
                    customContextMenu.customItems.push(menuItem);
                    textInput.textDisplay.contextMenu = customContextMenu;
                    richText.contextMenu = customContextMenu;
            ]]>
        </fx:Script>   
        <s:layout>
            <s:VerticalLayout/>
        </s:layout>
        <s:TextInput id="textInput"/>
        <s:RichEditableText id="richText" editable="true" text="Hello world"/>
    </s:WindowedApplication>
       And assigning custom NativeMenu to RichEditable component returns RTE both on Flex 4.1 SDK and latest Flex 4.5 SDK build, TLF is not yet ready to support NativeMenus for text components, may be a corresponding bug should be added....

  • Multiple data sources for a (advanced)datagrid?

    Hi all,
    I have two arrays of objects coming in from two different sources keyed on a single column called "id". They have the exact same column structure. I want to show these in a grouped column structure in advanced data grid. The question is can I do that without manually merging the two arrays?
    Concrete example:
    Array1: [{id:1, name:"Cooper", zip:"94536"},
                 {id:2, name:"Corolla", zip:"94404"}]
    Array2: [{id:1, name:"One", zip:"94555"},
                 {id:2, name:"Camry", zip:"94403"}]
    This will look like:
    Id
    Name
    Zip
    Source1
    Source2
    Source1
    Source2
    1
    Cooper
    One
    94536
    94555
    2
    Corolla
    Camry
    94404
    94403
    I would like to do this without creating an array like:
    [{id:1, name1:"Cooper", name2:"One", zip1:"94536", zip2:"94555"},
    {id:1, name1:"Corolla", name2:"Camry", zip1:"94404", zip2:"94403"}]
    Charts are quite good at this since you can assign different data sources to different series and the axis defines the key on which the data will be merged. However, I could not find anything similar for tables.
    Any pointers?
    Thanks so much!

    Come to think of it, is this even possible? How does a datagrid use its dataField parameter to lookup data? I am guessing data_array[row_index][col.dataField] would determine the value of a single cell at row_index and col. If so, my naive approach would require me to override the bracket operator so that the appropriate value is returned..
    e.g. when a simple array of objects is used, you have [{name:John, lastname:Smith}], datagridcolumns dataField is then set to "name". Now I will have two separate arrays:
    arr1: [{name:John, lastname:Smith}]
    arr2: [{name:Smith, lastname:John}]
    mergedarray will have a reference to both of them. Then when getKey("name", 1) is called, it will return a special key which can be used to access the name property from array 1, something like "name1". If I cannot override the bracket operator, mergedarray[0][name1] will return nothing.
    I remember reading somewhere that this kind of override is not possible. Any ideas?

  • Urgent request for Flash 8 DataGrid Help

    I truly need help with this one =- so I hope someone can help
    me.
    I have tried the Flash help files but to NO avail. I have
    been working on this for 6 weeks and to be honest want to throw
    Flash out the window right now(and would too if my computer
    woudln't take up such a banging in the process:)
    I have to populate a DataGrid from XML data. The data is
    generated from C# code. Its dynamic, so there are no specified URLs
    to place within the code. I have placed below, the ActionScript
    code as well as the XML that is being fed in.
    I hope someone can help me as it needs to be completed by
    tomorrow and I am freaking out!

    So many people having the same problem, myself included, surely we can't all have a fault inside our premises? It has to be something at your end BT.
    I am told I might be billed £130 for an engineer to call at my home? I think not, as I said so many people having the same problem, the fault lies with BT  

  • Sking for TextInput problem

    Hey,
    im trying to have custom skin for spark TextInput and inside I'm using RichEditableText as follows
    <s:RichEditableText id="textDisplay"
                            multiline="{hostComponent.multiline}"
                            lineBreak="toFit"
                            color="{hostComponent.textColor}"
                            fontFamily="{hostComponent.fontFamily}"
                            fontSize="{hostComponent.fontSize}"
                            focusedTextSelectionColor="0xddf1f8"
                            left="6" right="1" top="4" bottom="1"
                            kerning="off"
                            heightInLines="{hostComponent.lines}"
                            >
        </s:RichEditableText>
    problem is that when i start typing it's never go to 2nd line only if I have press Enter key. What's wrong with it?
    Also I want to ask how work widthInChars and heightInLines parameters. I was thinking that if I have set widthInChars to 10, it will set maximum 10 chars per line, but it doesnt work like that...
    Im using SDK 14403

    If the Enter key isn't causing you to get a second line of text, then your databinding expression is probably setting 'multiline' to false.
    Have you read the ASDoc descriptions of how widthInChars and heightInLines work?
    Gordon Smith
    Adobe Flex SDK Team

  • Reguler expression for textInput

    How to restrict text input using reguler expression for First character is only in [a-zA-Z ].
    Ex.  AG67587
          adhsgfdsfg
          a78878

    you could use this
    http://stackoverflow.com/questions/1679886/text-input-restrict-in-flex3-air
    i don't like the idea of dynamically changing the restrict property though.
    you'll probably have to listen for the textInput or changing event and then manually test your regex and adjust the textinput.text property as appropriate.
    from the adobe docs for changing event
    Dispatched before a user editing operation occurs.   You can alter the operation, or cancel the event   to prevent the operation from being processed.

  • Header Width for a Spark DataGrid

    I recently replaced an mx:DataGrid in one of my components with the new spark DataGrid and I noticed that the columns were so narrow that most of the header labels were unreadable. I eventually figured out that the spark datagrid was basing the column width on the length of the longest displayed item in the contents. So for example, if the column is showing state abreviations, the header would only show the first two or three letters of the header text and the rest would be truncated. What I need to know is whether there is some way to reverse this behavior. I want the width of each column to be based on the length of the header text, not the content data.
    I know the 'recommended' way of setting column width is with a typical item, but in this case that's not an option. I also tried creating a custom DataGridSkin that sets the minWidth property of the headerRenderer but it had no effect. I'm pulling my hair out trying to get this to work, any help would be much appreciated.

    Actually, when I took a closer look at the stack trace I was able to figure out the problem. It turns out that the problem with the typicalItem was being caused by a labelFunction on one of my columns. The label function was expecting to see the DTO object as it's first parameter. In the process of setting up the typicalItemRenderer, the grid column was calling itemToLabel with the typicalItem causing a class cast expection.
    I was able to resolve that issue but now I'm seeing another one. The typicalItem I creat isn't having any effect of the width of my datagrid columns. The problem is, GridColumn doesn't have an itemRendererFunction set by default. The itemToRenderer function of GridColumn only uses the typicalItem if there is an itemRendererFunction defined. Is that the intended behavior? If so, the documentation really needs to mention that fact somewhere.
    It looks like the typicalItem is actually getting applied somewhere, I just didn't have long enough string to see the effect. I'm still curious though, if not in the itemRendererFunction, what Class/function is actually responsible for taking the widths from the typicalItem and applying them to the columns?

Maybe you are looking for

  • A loop between two or more fact table

    Hi, How Does Discovere solve the loop between tables ? (join between with more fact table in a star schema) Microstartegy resolve this problem with diffrent select and union the results. Instead BO use the contexts. Thank you. null

  • Perform Full Cycle Count - No Data Found

    I am trying to initialize a full cycle count for all items in a subinventory. I have a recent ABC compile set and a new cycle count setup. A, B, C and D classes are all set to count 1x per year. I have verified that all items from the compile are no

  • Infotype Creation in R/3

    Hello All While checking to see if any new infotypes need to be created or populated before going ahead with the configuration, since I am on R/3 4.7 , they do not have any infotypes pertaining to ECM. But since we would be using Comp Management in M

  • Error using tuxedo proxy services in a cluster

    We have successfully created proxy services using tuxedo transport in single server ALSB configurations. We are now installing ALSB 2.6 in a cluster, and we cannot make the service work. We have configured WTC in all the servers of the cluster. When

  • I need help deleting and adding text

    i need help deleting and adding text, can soneone help Adobe Photoshop Elements 10