Questions tagged [datafield]

64 questions
1
vote
1 answer

Column not showing data using Gridjs while integrating with React js

currently I am using Gridjs to display my table in my Reactjs application. This is the code, the Name, and Email is displaying correctly, but the created_at is not, giving me empty. How can I display the data? thank you..
Muneeb K
  • 457
  • 1
  • 9
  • 21
1
vote
1 answer

Elasticsearch: Constant Data Field Type

Is there a way to add an Elasticsearch data field to an index mapping, such that it always returns a constant numeric value? I know I can just add a numeric datatype, and then reindex everything with the constant, but I would like to avoid…
speedplane
  • 15,673
  • 16
  • 86
  • 138
1
vote
2 answers

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 contain two data fields: 1. ID (unique) 2. Age. All the…
raygodl
  • 11
  • 2
1
vote
1 answer

How to find data structure of an app in PowerApps

I want to create a SQL connection and import data from an app (Shoutouts template) to SQL database. I created a SQL connection and tried to import the data in there but I got this error. CreatedOnDateTime: The specified column is generated by the…
Mixer
  • 11
  • 3
1
vote
1 answer

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 DisplayName which is shown in the dataform datafield…
Peymankh
  • 1,976
  • 25
  • 30
1
vote
2 answers

How can I access array element value in json

I'm not able to access _sValues in my html page, however i can able to console.log the interested _sValues array element in console. JSON [ { "_this":{ "_isEvent":false, "_sNames":[ "name", …
Mad-D
  • 4,479
  • 18
  • 52
  • 93
1
vote
3 answers

How to use abstract methods to set a private data field?

I have an abstract class called myClass, and that class has a private datafield called x. I have a public getX method, and an abstract setX method. I have a subclass called mySubclass which extends myClass. I'm trying to create a concrete setX…
Space Ostrich
  • 413
  • 3
  • 5
  • 13
1
vote
1 answer

Edit two Columns in GridView keeping other Columns' data intact

I have GrideView in my asp.net project and i want to edit only two columns , i used Read-Only="true" property but the problem was after editing the two columns the data of others become empty !!!! Please help me how to avoid this…
1
vote
0 answers

Genie's GenericArray data field

I have a genericArray of int [indent=4] init var a = new GenericArray of int for var i = 1 to 3 do a.add (i) say: Func of int = def (v) stdout.printf ("%d ", v) var end = a.length - 1 these all output 1 2 3 for var i = 0…
Zee
  • 78
  • 6
1
vote
1 answer

Access DataField value in Itemrenderer when submitting to Database

I'm really stuck on this one. I have setup an Itemrenderer in a Datagrid which manages a DateField. Users can enter a date and other values directly in the datagrid. When they click 'submit', I want to populate a row in a database and I have setup a…
user1753640
  • 193
  • 1
  • 2
  • 11
0
votes
1 answer

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 (I'm creating a chat). I need that information…
Ievgenii
  • 67
  • 8
0
votes
1 answer

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 RetailStore(TradeMarkId field) as follows: Class…
WaMe
  • 31
  • 2
0
votes
1 answer

How to create data-field attributes for data cells in Bootstrap Table?

As per Bootstrap Table documents, a data-field was created for TH but the data-field for TD is not in the document. Any idea about this? $('#table').bootstrapTable({ url: 'data1.json', pagination: true, search: true, columns: [{ field: 'id', …
jsjq-finder
  • 165
  • 3
  • 15
0
votes
0 answers

A numeric type data field appears as 66de63.... How could it be changed to the correct data type?

I tried to use the cast function to change the data type, but No matching signature for operator = for argument types: STRING, INT64. Supported signature: ANY = ANY
0
votes
1 answer

Function to lookup arbitrary column in DataTable and return value in another arbitrary column

I'm trying to write a generic function which can be used to look up an arbitrary value in an arbitrary column in an arbitrary DataTable, and return the corresponding value in another arbitrary column in the same DataTable. I'm not concerned with…
Alan O'Brien
  • 151
  • 1
  • 13