Hi Team,
Can we able to change the colour of pagination button (next, prev next , prev etc..) ?
Regards,
Ramesh.

When I click "add new row", required field validation raises exceptions/constraints one cell at a time. i.e. not allowing the rows data to be entered in any other order / or for the entire row to appear in edit mode.
behavior reproducible on BatchEditing demo page: http://demos.telerik.com/aspnet-ajax/grid/examples/data-editing/batch-editing/defaultcs.aspx
It seems like I would have noticed this before, so maybe it's update related: I have a RadGrid that has Batch Edit row mode enabled.
Is that intended? Can it be changed with an attribute? if not, how about some client side js? I'll be debugging, but would appreciate an available solution.
Thanks

I have a textbox filter on a radgrid and need to get all results between two integers. So I enter "1974 2000" and use the 'between' selection to get all values between 1974 and 2000. I now need to retrieve the current filter expression in order to pass to a stored procedure. I tried using FilterExpression like so:
string EntitySQL = grid.MasterTableView.FilterExpression;
and get: "((Convert.ToInt32(iif(it[InstallationYear\"]==Convert.DBNull,null,it[\"InstallationYear\"])) >= 1974) AND ( Convert.ToInt32(iif(it[\"InstallationYear\"]==Convert.DBNull,null,it[\"InstallationYear\"])) <= 2000))"
But when I use GetEntitySqlFilterExpression like so:
string EntitySQL = grid.MasterTableView.GetEntitySqlFilterExpression();
The result is blank. For some reason GetEntitySqlFilterExpression() does not process the "between" filtering command. I'd like to use this expression because it is much easier to understand and use. Does anyone know why the "between" filtering command is not recognized?
hello
is there any way to filter the combobox by textbox using startwith and highlight all the startwith items ?
thanks
Hello,
I'm trying to upload some file programmatically from a python script thru one of our forms but I've hit a stumbling block.
When I check the Web Inspector, I see that file uploads trigger a multi-part form POST that includes the below field:
ctl00_ContentPlaceHolder1_uFile_ClientState:
{
"isEnabled":"true",
"uploadedFiles":[
{
"fileInfo":{
"FileName":"test.xlsx",
"ContentType":null,
"ContentLength":9365,
"DateJson":"2019-03-08T16:00:12.472Z",
"Index":0
},
"metaData":"long string of random gibberish"
}
]
}
And this is where I'm having difficulties. If I copy the metadata field from the web inspector, and test using the same file that I used at the time, then it works. But if I try uploading another file then it fails. And I guess that it's because I am not updating the metadata field accordingly.
So, can someone help explain to me what goes into that field? And how is it encoded?
Any insight you could share would be greatly appreciated.
I need to insert "null" into the database when a raddatepicker is empty. How is this accomplished? I use the following parameter for textboxes and it works just fine:
newDocCmd.Parameters.AddWithValue("@docReason", !string.IsNullOrEmpty(docReasonTextBox.Text) ? docReasonTextBox.Text : (object)DBNull.Value);
If I try the same for the raddatepicker I get the expected error of "cannot convert from 'object' to 'string'":
newDocCmd.Parameters.AddWithValue("@docSubDt", !string.IsNullOrEmpty(rdpSubDt.DbSelectedDate) ? rdpSubDt.DbSelectedDate : (object)DBNull.Value);I can get the oldValues, newValues, but i can not get JUST the changed values on server-side ItemUpdating event. Why is that? The data tier is waiting for an object with fields and values that need to be updated on a given primary key. I want to send 2 items in the hashtable, not 100 items of useless data to be updated, when i only have 1 item that needs to be updated in the database. Please tell me that you have this functionality? I tried to use the UpdateValues, but its always empty, but it seems different than SavedOldValues and ExtractValues. Why use "UpdateValues" if it doesnt do the same, confusing to say the least.
The help in the demos is not what we are doing. This is one record placed in edit-mode when the dataform loads. Again there should only be a few lines to send the hashtable to the data tier.
Dim editedItem As RadDataFormEditableItem = TryCast(e.DataFormItem, RadDataFormEditableItem)
Dim oldValuesHT As Hashtable = editedItem.SavedOldValues()
Dim newValuesHT As New Hashtable()
Dim updatedValuesHT As New Hashtable()
editedItem.ExtractValues(newValuesHT)
editedItem.UpdateValues(updatedValuesHT)
Any help Telerik?
I have added a searchbox in a modal window on a web app, and when it loads, neither the placeholder text nor the entered text are visible - or more accurately, only the first few pixels are.
My issue is similar to this post - https://www.telerik.com/forums/impossible-to-type-into-my-searchbox and I tried adding the CSS as suggested but it seems to get overridden.
I have found that if I right click and Inspect Element then the width increases so that the text becomes visible.
I have set up a small sample page which illustrates the issue at http://twadventureworks.azurewebsites.net/
Click the Add an Account button to get the modal. You can see the start of the placeholder text in the top box. If you click into it and start to type e.g. 'Matthew', the search works and the dropdown is populated with results, but the entered search text is mostly hidden.
If I take RadSearch out of the modal then it works correctly, but this really goes against what I am trying to do in my application.
Would be grateful for any suggestions as to how I can fix this.
Thanks
Hi,
We are experiencing some differences in the copy/paste behavior in different browsers.
The content is copied and pasted in Design mode. See attached images.
In FF and Edge it works as expected.
In Chrome the HTML is altered...the color for instance is coming from a coupled stylesheet...but why?
This is a serious problem for our CMS users.
Marc

We are using a RADEditor in our solution with StripFormattingOptions attribute: StripFormattingOptions="MSWordNoMargins, ConvertWordLists, MSWord ". However, when content from a Microsoft word file is copied and pasted in the editor it loses its format. For example, Upper Case content is converted into lower case. I have tried multiple combinations of StripFormattingOptions attribute but still, the problem persists.
One more point is that the behavior here is random, i.e. sometimes the format is maintained while sometimes it is lost. There is no specific format or case where this problem occurs. Hence, unable to identify the root cause as well.
Request you to please assist for the same.
