newly added lines rowhandle only affects the table visually and does not save the data in the table - tabulator

The problem: I have a table that I use movableRows and rowHandle to move the rows and so far everything is fine. However, when I add values and modify it with the rowHandle, it visually changes but the saving does not occur and if I add another item, the list returns to the order without the modifications I had made.
But if I leave the items in the table, refresh the page and it loads these items already saved, this problem does not occur, only with items that were added in that section
OBS: I'm calling the tabulator through Alpine JS.

Related

How do I take the input values from one screen to a gallery in another screen PowerApps?

I am using PowerApps Canvas for the first time. I have created two screens. One has a gallery connected to an excel sheet. It displays the table contents from the excel file. And the second screen has some input text fields. I want to enter values in these fields and click on submit, so that when I go to the other screen I can see this new record in the gallery. I want to use the collect function for the submit button but it is showing problem with using Record1 (name of the global variable in which I am storing the excel table). It says the specified data source cannot be used.
Collect(Record1,
{
AgentName:TextInput1.Text,
ID:TextInput4.Text,
Shift:TextInput2.Text,
Weekoff:TextInput3.Text
}
)
I am setting Record1 as a global variable in the onStart property.
Set(Record1,Table1);
Edit: I ran onStart and the error is not there but new record isn't being displayed on the gallery. There is an error with setting the global variable Unexpected Characters. The formula contains 'Ident' where 'Data' is expected.
Making a global variable wasn't required. I just used the excel table directly in the other screen and the collect function works now.
You want to store your input into your excel right? You need patch instead of collect. Collect is for local storage, patch creates an item in the datasource.

Record Display won't update after ComboBox selection

We're using an Access Application that presents a ComboBox built off of a query that polls a Sharepoint list, then shows the details for that record when clicked.
It's worked perfectly for seven months or so, but today, one of the users ran into an issue when trying to add a new record to the List. After the ComboBox would update with the new entry, clicking on it would not update the display of that record. The highlight in the ComboBox would move, but the details would still reflect the last record chosen.
Thankfully (?) I can re-create the issue on my copy of the client application, so I can troubleshoot it and also prove that it's a repeatable issue, not just a sporadic bug.
Here's what I've got so far:
Restarting the affected form allowed normal operation to continue, but while that's an acceptable workaround, it's obviously not an acceptable solution.
Editing existing records does not trigger the issue. The edited records display perfectly.
None of the fields in the problem List are 'required'.
The Sharepoint List in question has about 1700 records, so it's not a large database at all, and on top of that, the ComboBox is only displaying a Query that returns 30-50 records.
Made a test form that recreated a similar environment for one of the other Sharepoint lists in the DB and got the same response... or... lack of response.... from the ComboBox after adding a new record.
VB Calculations do not appear to be affected and can use the new records in formulae, despite heavy usage of Recordsets to compile those values.
Any advice will be most welcome!
This looks simply like the form is not refreshing the values, try pressing F9 (ReCalc) or F5 (ReQuery) and see if the value updates. There is a bug on access forms where going back from a new record and then forward again seems to stop recalculation - this seemed to fix it for me:-
Private Sub Form_Current()
Me.Recalc
End Sub

Multiple values appear as a single entry in the lotus notes view

I have an issue with a lotus notes view. This view displays entries based on the number of problems in the field "All problems". This field is a multivalued field. In the view column properties for the column "problem", the multivalue separator is New line & under the sorting tab, the checkbox against "show multiple values as separate entries" is checked. When i see the view from my machine, multiple values appear as a separate entry. When i checked in another machine, the view was displayed as expected. The problem came, when i tried to do a search for documents based on a value. Now the multiple values come as a single entry which is not supposed to happen. The strange thing is it appears fine in my machine. But when i tried it in another machine, i face the issue. To make sure its not a version problem i checked it in a machine with the same version as mine(8.5.3) also tried in a lower version(7.5) but got the same result. I even tried the following: 1.delete the cache.ndk. 2. remove the DB icon from workspace and reopen the database from applications. 3. go to (Byurl) view in bookmark.nsf and delete all the documents and reopen lotus notes. 4.rebuild views using Ctrl+Shift+F9. Could not do a database rebuild(no access). Does any one know what can be the problem and possible resolutions?
The search is returning a single document, which is correct. It's the representation of the document that is annoying you, you want to have it displayed as it was originally, i.e. with a categorized column. If you are sorting another column in the view, the categorized column gets turned off.
Have a look in Search in View/More/Sort Results by, that might be your problem.

Filtering a repeating table linked to a secondary datasource

I have an infopath form based on a sharepoint list (worktracker).
In that form there is a repeating section which holds data from a secondary source which is the worktracker list again.
I would like to filter that table using the value in a field on the form - this enables me to run a check on duplicate items on the list by using a calculated checking reference.
I have done this by using conditional formatting to hide the non-matching items but that this killing my form as IE throws tantrum as it takes too long.
Does anyone know another way to do this? I am stuck using IE8 - not my choice!
UPDATE:
So since posting the above, I had since tried using a REST connection which doesn't work as my list is too big. I have also tried using an XML connection to a filtered view and that didn't work either!
Cheers,
In the form, select the value field. Create a rule that sets the secondary data source's query field of the same name to that value. Then query the secondary data source. It will only return the items where the value matches.

Core Data and UIPickerView - Default Value

I am working on an iPhone/iPad App that is using core data. I have a Table (Entity) that wants the user to select from another Table (relationship is setup in the model). I have worked through several tutorials, and it is working very well. Select one of the second table items, save the record. When I re-edit the record the correct value is properly showing. Great (since I am very new to this, I love how some of this works!).
However, if I click to bring up the Picker again - it defaults back to the top of the list, rather than the previously selected second record. All examples I could find have something in the Picker Class on viewDidLoad to set the selected row - to an integer? How would I know what row to select, since this is a table - not an array of fixed values?

Resources