Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
LittleMuscle #1
Placing a variable containing a Menu selection inside aspecific Cell of a datagrid
i have a function that gets the menu selection and then places the cursor into
the specific field i want to insert the record into; and once in the cell i
have a itemEditBegin function called but i don't know what method to call to
drop the menu selection into the cell :
private function menuHandler(event:MenuEvent):void {
dg.editedItemPosition = {columnIndex:colIndex,rowIndex:row};
menuChoice=event.item.@label;
}
private function dgEditBeg(event:DataGridEvent):void {
//HERE'S WHERE I TRY TO PUT THE MENU SELECTION (VAR menuChoice) into the cell.
//event.currentTarget.selectedItem.MMPTA_video. = menuChoice;
dg.editedItemPosition = {columnIndex:colIndex+1,rowIndex:row};
}
LittleMuscle Guest
-
How do I put a Menu selection into a specific cell of adatagrid...
i have a function that gets the menu selection and then places the cursor into the specific field i want to insert the record into; and once in the... -
Datagrid: single cell selection
Did anyone ever reply to this question yet? Please do if you know. Thanks. -
can i use dynamic variable inside a dataadapter and bind to datagrid
Hi I want to use a sql designed in the dataadapter and I want to pass a variable so it can retrieve related data by using "WHERE" clause in the... -
How to set cell background based on cell value when datagrid is displayed
I would like to check a datagrid cell value, and change the color of the cell background, when a datagrid is displayed. I want to do this as early... -
RadioButtonList In A DataGrid Cell - Can I find the selected button without editing the cell?
I have an ASP.NET form with a DataGrid and Button. I want to put a RadioButtonList in a DataGrid cell. I bind it to an ArrayList which has a...



Reply With Quote

