The datafield tag has no wiki summary.
2
votes
2answers
160 views
When should I use VARCHAR instead of TEXT and vice-versa in MySQL?
I'm a little confused and could do with some guidance.
I want two fields to store an excerpt with a max size of 500 characters, and another to store a description with a max size of 10,000.
What ...
2
votes
1answer
475 views
Appropriate data field type for true/false value?
What's the most appropriate (read least data consuming) data field to store a true/false/1/0 value in a mySQL database?
I have previously used a one character long tinyint, but I am not sure if it's ...
2
votes
2answers
612 views
Possible to call a function inside BoundColumn.DataField?
<asp:BoundColumn DataField="pos" HeaderText="Principal Office" />
would it be possible to somehow...
<asp:BoundColumn DataField="postProccess(pos)" HeaderText="Principal Office" />
...
1
vote
1answer
293 views
AdvancedDataGrid dataField - how to use a subarray or object in flex?
I have an advanced data grid in flex (flash builder 4). It's dataProvider is pointing to an ArrayCollection (this._encounters).
Inside that array collection is a property that is an object (a ...
1
vote
1answer
2k views
Change Silverlight DataForm:DataField label value at runtime
I'm having a dataform which is binded to a property in my view-model in a Silverlight application, I've created my entity classes with WCF RIA Services and every property has the attribute of ...
1
vote
5answers
5k views
Flex 3: How do I get the DataGridColumn's dataField in its ItemRenderer?
I'm trying to reach the dataField of a DataGridColumn in the itemRenderer. Below is the dataGrid:
<mx:Script>
<![CDATA[
[Bindable] public var weeksOfMoth:ArrayCollection = new ...
0
votes
1answer
36 views
Flex, how to compare data from dataGrid dataField with string value?
The question seems to be simple, however it create problems for me. I have a dataGrid with two dataFields: peerID, name. The information in a grid updated dynamically when new user joined the group ...
0
votes
1answer
114 views
Silverlight 4 - RIA Service DataField Header on DataForm (AutoGeneratingField)
I have 2 models on my server side app ( TradeMarks & RetailStores )
each RetailStore have the TradeMarkId field for cross referencing.
On my DomainService metadata model I defined the ...
0
votes
0answers
19 views
How can i assign a datafield a variable name in Flash CS5 + PHP parser
how can i assing a variable and a value to a Datafield komponent in Flash CS5.
i need it for my php parser!
thx
0
votes
3answers
165 views
replacing the autogenerated checkbox feild with radio button in a Autogenerated columns Grid View
I have a Grid view for which columns are auto-generated. The binding data-table would be having a Bit(Boolean) column. Now when the data is binded, the check-box field is generated in place of the Bit ...
0
votes
1answer
118 views
Issue in the Design View for ASP.Net Custom Server side Control which inherits GridView
I have created a Custom Server Side Control which inherits GridView Class. I have added a public string property, which accepts the column names of the Data Source(DataSet or DataTable) with comma ...
0
votes
0answers
134 views
Modifying BoundField Data returned from a SOAP request
I am very new to c# and I am trying to modify my grid data that was retrieved from a SOAP request. Here is the code so far:
<Columns>
<asp:BoundField DataField="groupName" ...
0
votes
3answers
504 views
xml attribute datafield datagrid
Why cannot I bind xml attribute for datafield? (flex 4)
<fx:Model id="sampleXML">
<contacts>
<contact firstName="Joe" lastName="Smith" emailAddress="joe@smith.com" ...
0
votes
2answers
192 views
java linklist with two data field
Can someone help me get started, i'm not sure how to create a linklist that can contain two data field
Write the Java program for a linked list class. The node that forms the linked list should ...
0
votes
1answer
278 views
Getting dataFields of DataGridColumn into ArrayCollection
I have a DataGrid with 3 DataGridColumns. All 3 of them have separate dataFields.
I need to get the datafields into an ArrayCollection and pass it to a funciton. I dont want to hard code the ...
0
votes
2answers
443 views
Flex DataGrid reads a field from lastResult.node as number
Why does Flex 3 DataGrid read a string from XML lastResult.node as number?
A field is saved as var_char in mysql, php reads it as string and pass it OK.
If there are more then 16 charaters it gets ...