@boykomarkov22gmail-com
@boykomarkov22gmail-com
Forum Replies Created
-
AuthorPosts
-
July 28, 2023 at 11:03 am in reply to: how to control the window size or hide until content is loaded #108497
Markov
KeymasterHi,
The open() method controls when the window will be opened. So you can ensure any content is loaded and then call the method to open the window.
Regards,
MarkovMarkov
KeymasterHi,
Unfortunately, such functionality is not supported by our docking layout for blazor component.
Regards,
MarkovMarkov
KeymasterHi Ozerk,
API for adding a tab item into an existing panel is still not available.
Regards,
MarkovMarkov
KeymasterYou can get the task this way:
private void OnKanbanChange(Event ev)
{KanbanChangeEventDetail detail = ev[“Detail”];
var oldValue = detail.OldValue;
var value = detail.Value;KanbanDataRecord record = new KanbanDataRecord();
record.Text = value.text;
record.Status = value.status;
record.Priority = value.priority;string task = detail.Task.ToString();
string valueToString = detail.Value.ToString();}
When you have the new properties, you can modify the record in the database.
I hope this helps!Markov
KeymasterHi Brandon,
Please, write to support@jqwidgets.com for License unlock instructions. There is a special unlock key which you will receive from the support team.
Best regards,
MarkovjQWidgets Team
https://www.jqwidgets.com/Markov
KeymasterHi Aviv,
A new ‘currentTime’ property is introduced which allows you to set the current time. In previous versions, it was always Today.Now, it defaults to Today, but users may set it.
Regards,
PeterMarkov
KeymasterHi Achraf,
In order to hide it, a license key is required and should be applied. If you already have a license key, please contact support@jqwidgets.com for unlock instructions.
Best Regards,
BoykoMarkov
KeymasterHi,
If the Grid is re-rendered, the rows will be in their initial state. We will need a full example in order to check your use case.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
You can understand how to highlight rows/cells from these tutorials https://www.htmlelements.com/docs/grid-styling-cells/ and https://www.htmlelements.com/docs/grid-styling-rows/
Regards,
MarkovMarkov
KeymasterHi,
You can delete a row by using the deleteRow method. For example: grid.deleteRow(1); To clear all rows, you can set the Grid’s source property to an empty array or null.
Regards,
MarkovMarkov
KeymasterHi Oleg,
To learn how to localize the Grid, refer to https://www.htmlelements.com/demos/grid/localization/.
In addition, please, if you share links, share links to github, codepen, stackblitz or similar sources. We would not open any other links.Regards,
MarkovMarkov
KeymasterHi Oliver,
We are unable to reproduce the reported behavior. Please, make sure that you do not have CSS which is in conflict or styles which break behavior.
Regards,
MarkovMarkov
KeymasterHi,
Each column has a boolean property ‘allowExport’. Please, set it to false to column which you do not want to be exported or printed.
Regards,
MarkovMarkov
KeymasterHi Oleg,
Unfortunately, it is not possible to combine arrows into one. To hide row detail arrows, you can use CSS.
Example:
smart-grid-row[data-id="5"] smart-grid-cell div[data-field="_rowDetailColumn"] button { visibility: hidden; }
Markov
KeymasterHi Anh,
We will first need a sample which shows this behavior, because as I see, the built-in styling is customized with some custom styles.
Regards,
Markov -
AuthorPosts