Questions tagged [dataitem]
53 questions
0
votes
4 answers
Why is DataItem always null in the Page_Load handler?
I've created an ASP.net web page with an ASP Repeater. I bind the ASP Repeater with an IOrderedEnumerable DataSource.
I need to access the Repeater DataItems at inside the Page_Load event handler. However, when I try to get the value of…

Vivian River
- 31,198
- 62
- 198
- 313
0
votes
2 answers
Receive dataItem in handheld from wear Android Kotlin
I have an app with two modules, app and wearable.
I need to send data from handheld to wear, and from wear to handheld.
This is my code:
Wear MainActivity
class MainActivity : Activity(), DataClient.OnDataChangedListener {
private lateinit var…

Pablo Garcia
- 361
- 6
- 23
0
votes
1 answer
Wearable DataClient onDataChanged is never called
I am building a wear os app as part of a react native project. The handheld application should send some data among it's wearable-nodes whenever it is changed. I am using DataClient and DataItems to do this. On the wearable side I have implemented…

J. Doe
- 71
- 5
0
votes
1 answer
Dynamic Memory Allocation for Struct in C Language
I'm brushing up on some C programming, and trying to understand why I cannot print a data item from a structure (struct) after dynamically allocating memory to for structure.
I tried printing the data items in the struct to see what values I get but…

Carson Gedeus
- 7
- 5
0
votes
0 answers
Page set cognos Date field
I need to create a Cognos report, the SQL query has data for last 3 months. I want 3 different report pages for each month. I have data items as date_insert which is datetimestamp field. I want all the dates with Jan month on page 1, Feb on page 2,…

Ila
- 9
- 2
0
votes
2 answers
2 basic repeaters that communicate the same DataItemIndex
I have the same data source for 2 basic repeaters, and in the first repeater I have is over items of the data source, showing only the title and date of the items, I want whenever a user slide to a certain item, the text field of this item will be…

farah el agha
- 77
- 9
0
votes
1 answer
Data item current values not updated: internal-work queues get next item: blueprism
I am following a tutorial for blueprism (beginner). In the tutorial, I am asked to create a process, add an action stage and use the internal business object called work queues, with the action get next item. In the outputs tab of this get next item…

AntsaR
- 380
- 1
- 9
- 28
0
votes
0 answers
fetch item with json file and ItemFileReadStore dont fetch items
json_file: (named data/instances_in_versions_data, without extension)
{
"identifier": "value",
"items": [
{"version": "18.2.0.0-b130-int", "value": "1", "okcs_instances": "2", "fusion_instances": "1"},
{"version":…

user1767599
- 47
- 1
- 6
0
votes
2 answers
Kendo grid: Make multiple cells dirty in a row using jQuery
I have a batch editable grid. I modify the dataitems via jQuery, and mark the changed value as dirty like this:
grid._modelChange({ field: "propertyName", model: dataItem});
The other way is the set() method: dataItem.set("propertyName","value"),…

Tibor
- 29
- 2
- 4
0
votes
1 answer
How to hide items within a datalist if values are NULL (asp.net)(visual basic)
For example in my datalist if Eval("OptionJ").Tostring = Null I would like the function GetVisible to set visibility of the radio button to false like so:
" type="radio" value="J" visible="<%#…

Phil
- 3
- 3
0
votes
1 answer
Access previous ListViewDataItem in itemdatabound
Trying to access previous item in listview during itemDatabound but it returns nothing. In fact, lvListview.items.count is showing 0; even though the records are clearly there.
Thank you of course for any help. :)
Protected Sub…

Richard Fox
- 11
- 1
- 5
0
votes
1 answer
gridview dataitem to decimal array
enter code hereHello I try to convert the dataitem into decimal array, here is my code;
if (e.Row.RowType == DataControlRowType.DataRow)
{
for (; i < 9; )
{
if…

Orkun Antmen
- 19
- 5
0
votes
1 answer
Eval Change the value
How can I do change Order Status field.
For example ; I want do if the data name "AÇIK" change name "OPEN". How can I do.
<%#DataBinder.Eval(Container.DataItem,"OrderStatus") %>

Ali Yılmaz
- 1
- 7
0
votes
1 answer
Grid.MVC accessing row.dataItem.dataItem with JQuery
I'm using GridMVC to display a list of employerlocations and their address. ViewModel has a list of EmployerLocations called AllEmpLocations and within each EmployerLocation there is the Address model.
I'm able to bind this model to the grid and the…

paul
- 1
- 1
0
votes
1 answer
How do I get past mGoogleApiClient.connect() when it doesn't seem to actually connect?
I'm trying to send an ArrayList to my Android Wear device from the mobile device.
Unfortunately I'm not getting past the mGoogleApiClient.connect() as per my sop statements.
What I've done is set up a DataLayer item and used the onDataChanged() to…

conedmiro
- 103
- 10