[flexcoders] FW: Problem in Texbox while populating from Grid

2006-09-04 Thread Renee
In the attached screen , update the name , give some very big name  now
try to navigate through records by clicking on the row.
Notice valuse populating in name textbox is invisible. The problem is
when we updated name with longer one, cursor(pointer ) moves to  right
most position. Now the cursor is at right most position  looking like
rest of the names are missing but actully they all are gone towards left
side. We can see the value if we move the pointer into the text field.

can anybody put light into the issue..

The same issue is exisiting in Flex 2.0 also.

Thanks
-Renee


-- 
Sent using Laszlo Mail. Try it yourself.
http://www.laszlomail.com


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 
?xml version=1.0 encoding=utf-8?

mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;

mx:Script

function addRow() {
if (name.text != ) dg.addItem( {name: name.text, email: 
email.text, phone: phone.text} );
}

function updateRow() {
if (dg.selectedIndex!=undefined)
dg.replaceItemAt(dg.selectedIndex, {name: name.text, email: 
email.text, phone: phone.text} );
}

function deleteRow() {
if (dg.selectedIndex!=undefined) {
dg.removeItemAt(dg.selectedIndex);
name.text=; email.text=; phone.text=;
}
}

/mx:Script

mx:Model id=employeeModel source=../assets/employees.xml/

mx:DataGrid id=dg width=100% height=100%
dataProvider={employeeModel.employee}
mx:columns
mx:Array
mx:DataGridColumn columnName=name headerText=Name/
mx:DataGridColumn columnName=phone headerText=Phone/
mx:DataGridColumn columnName=email headerText=Email/
/mx:Array
/mx:columns
/mx:DataGrid

mx:Form
mx:FormItem label=Name
mx:TextInput id=name width=200 text={dg.selectedItem.name}/
/mx:FormItem
mx:FormItem label=Email
mx:TextInput id=email width=200 
text={dg.selectedItem.email}/
/mx:FormItem
mx:FormItem label=Phone
mx:TextInput id=phone width=200 
text={dg.selectedItem.phone}/
/mx:FormItem
mx:FormItem
mx:HBox
mx:Button label=Update click=updateRow()/
mx:Button label=Add click=addRow()/
mx:Button label=Delete click=deleteRow()/
/mx:HBox
/mx:FormItem
/mx:Form

/mx:Application
?xml version=1.0 encoding=utf-8?

mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;

mx:Script

function addRow() {
if (name.text != ) dg.addItem( {name: name.text, email: email.text, phone: phone.text} );
}

function updateRow() {
if (dg.selectedIndex!=undefined)
dg.replaceItemAt(dg.selectedIndex, {name: name.text, email: email.text, phone: phone.text} );
}

function deleteRow() {
if (dg.selectedIndex!=undefined) {
dg.removeItemAt(dg.selectedIndex);
name.text=; email.text=; phone.text=;
}
}

/mx:Script

mx:Model id=employeeModel source=../assets/employees.xml/

mx:DataGrid id=dg width=100% height=100%
dataProvider={employeeModel.employee}
mx:columns
mx:Array
mx:DataGridColumn columnName=name headerText=Name/
mx:DataGridColumn columnName=phone headerText=Phone/
mx:DataGridColumn columnName=email headerText=Email/
/mx:Array
/mx:columns
/mx:DataGrid

mx:Form
mx:FormItem label=Name
mx:TextInput id=name width=200 text={dg.selectedItem.name}/
/mx:FormItem
mx:FormItem label=Email
mx:TextInput id=email width=200 text={dg.selectedItem.email}/
/mx:FormItem
mx:FormItem label=Phone
mx:TextInput id=phone width=200 text={dg.selectedItem.phone}/
/mx:FormItem
mx:FormItem
mx:HBox
mx:Button label=Update click=updateRow()/
mx:Button label=Add click=addRow()/
mx:Button label=Delete click=deleteRow()/
/mx:HBox
/mx:FormItem
/mx:Form

/mx:Application


Re: [flexcoders] FW: Problem in Texbox while populating from Grid

2006-09-04 Thread Stefan Horochovec



Hehehe, Cool, a mail sender created by Laszlo in Flex Mail list...
Theworld is sooo small :PRegardsStefan

- Mensagem Original De:
flexcoders@yahoogroups.comPara: "flexcoders@yahoogroups.com"
flexcoders@yahoogroups.comAssunto: [flexcoders] FW: Problem in
Texbox while populating from GridData: 04/09/06 13:50

In the attached screen , update the name , give some very big name 
nowtry to navigate through records by clicking on the row.Notice
valuse populating in name textbox is invisible. The problem iswhen we
updated name with longer one, cursor(pointer ) moves to rightmost
position. Now the cursor is at right most position  looking
likerest of the names are missing but actully they all are gone towards
leftside. We can see the value if we move the pointer into the text
field.can anybody put light into the issue..The same issue
is exisiting in Flex 2.0 also.Thanks-Renee-- Sent
using Laszlo Mail. Try it yourself.http://www.laszlomail.com


Mensagem enviada
utilizando NetConta WebMail 0.3


__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





[flexcoders] FW: Problem in Texbox while populating from Grid

2006-08-22 Thread Renee
just now i have checked the same problem in flex 2.0 also. There is no 
improvement...

Same problem exist in flex 2.0 also.

Can anybody help in this area?




 Begin forwarded message 
Subject: Problem in Texbox while populating from Grid
Date: 8/21/2006  7:58:05 PM
 From: Renee [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com


In the attached screen , update the name , give some very big name  now
try to navigate through records by clicking on the row.
Notice valuse populating in name textbox is invisible. The problem is
when we updated name with longer one cursor(pointer ) moves to  right
most position. Now the cursor is at right most position  looking like
rest of the names are missing but actully they all are gone towards left
side. We can see the value if we move the pointer into the text field.

can anybody put light in


-- 
Sent using Laszlo Mail. Try it yourself.
http://www.laszlomail.com


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 
?xml version=1.0 encoding=utf-8?

mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;

mx:Script

function addRow() {
if (name.text != ) dg.addItem( {name: name.text, email: 
email.text, phone: phone.text} );
}

function updateRow() {
if (dg.selectedIndex!=undefined)
dg.replaceItemAt(dg.selectedIndex, {name: name.text, email: 
email.text, phone: phone.text} );
}

function deleteRow() {
if (dg.selectedIndex!=undefined) {
dg.removeItemAt(dg.selectedIndex);
name.text=; email.text=; phone.text=;
}
}

/mx:Script

mx:Model id=employeeModel source=../assets/employees.xml/

mx:DataGrid id=dg width=100% height=100%
dataProvider={employeeModel.employee}
mx:columns
mx:Array
mx:DataGridColumn columnName=name headerText=Name/
mx:DataGridColumn columnName=phone headerText=Phone/
mx:DataGridColumn columnName=email headerText=Email/
/mx:Array
/mx:columns
/mx:DataGrid

mx:Form
mx:FormItem label=Name
mx:TextInput id=name width=200 text={dg.selectedItem.name}/
/mx:FormItem
mx:FormItem label=Email
mx:TextInput id=email width=200 
text={dg.selectedItem.email}/
/mx:FormItem
mx:FormItem label=Phone
mx:TextInput id=phone width=200 
text={dg.selectedItem.phone}/
/mx:FormItem
mx:FormItem
mx:HBox
mx:Button label=Update click=updateRow()/
mx:Button label=Add click=addRow()/
mx:Button label=Delete click=deleteRow()/
/mx:HBox
/mx:FormItem
/mx:Form

/mx:Application
?xml version=1.0 encoding=utf-8?

mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;

mx:Script

function addRow() {
if (name.text != ) dg.addItem( {name: name.text, email: email.text, phone: phone.text} );
}

function updateRow() {
if (dg.selectedIndex!=undefined)
dg.replaceItemAt(dg.selectedIndex, {name: name.text, email: email.text, phone: phone.text} );
}

function deleteRow() {
if (dg.selectedIndex!=undefined) {
dg.removeItemAt(dg.selectedIndex);
name.text=; email.text=; phone.text=;
}
}

/mx:Script

mx:Model id=employeeModel source=../assets/employees.xml/

mx:DataGrid id=dg width=100% height=100%
dataProvider={employeeModel.employee}
mx:columns
mx:Array
mx:DataGridColumn columnName=name headerText=Name/
mx:DataGridColumn columnName=phone headerText=Phone/
mx:DataGridColumn columnName=email headerText=Email/
/mx:Array
/mx:columns
/mx:DataGrid

mx:Form
mx:FormItem label=Name
mx:TextInput id=name width=200 text={dg.selectedItem.name}/
/mx:FormItem
mx:FormItem label=Email
mx:TextInput id=email width=200 text={dg.selectedItem.email}/
/mx:FormItem
mx:FormItem label=Phone
mx:TextInput id=phone width=200 text={dg.selectedItem.phone}/
/mx:FormItem
mx:FormItem
mx:HBox
mx:Button label=Update click=updateRow()/
mx:Button label=Add click=addRow()/
mx:Button label=Delete click=deleteRow()/
/mx:HBox
/mx:FormItem
/mx:Form

/mx:Application