
Hello all.
This works when used .aspx side
<telerik:GridBoundColumn DataField="BookingRef" DataFormatString="<a href='my url link here' target='_blank'>Booking</a>" FilterControlAltText="Filter BookingRef column" HeaderText="BookingRef" SortExpression="BookingRef" UniqueName="BookingRef"> </telerik:GridBoundColumn>
but I'm trying to get it working programmatically but no data will show in the column. It's just blank.
This is in the page_init subroutine.
Dim BoundColumn3 As GridBoundColumn = New GridBoundColumn With {
.HeaderText = "Setup",
.DataField = "Tcode",
.UniqueName = "Tcode",
.DataFormatString = "<a href='my url link here' target='_blank'>Setup</a>"
}
Has anyone any tips or advice. I don't really have time to do this as described here.
https://docs.telerik.com/devtools/aspnet-ajax/controls/grid/defining-structure/creating-a-radgrid-programmatically
Colin.

I know from previous posts that this "feature isn't supported" out of the box from telerik.
I was wondering if it was possible to get the filter being applied to the combobox from the client side and allow it be cleared from a button click. I want to try and customize the behaviour of the combobox so that I can filter items in the list which can then be checked individually or JUST the filtered items to be selected by the check all. However I find it bit clunky at present to clear the filter out of the combobox after selecting items.
Another alternative idea is to add a search textbox as the first item in combobox (similar as seen in kendo grid filters), is this level of customization available in radcombobox control?
Any help appreciated!

but nothing cleared.
the only solution
which can effect the logic of the code
Is there any solution for this problem ??
Note:
I'm hoping someone has a good solution or workaround for what I'm trying to build.
Backstory:
My team is upgrading an older web application that is a repository for documents. The old version of the app has us storing the binary of Word docs and rendering them to the user on demand. What we are looking to do now is to get rid of Word altogether and have them work exclusively in the Editor and we can just store the markup in our SQL database. However, the business owners need us to be able to allow their users to embed images in the documents like you can do with Word. The images will only exist inside the document, so uploading them to another location and then referencing them is impractical (not to mention a concern for our Audit department).
Question:
Is there a good way to embed an image into the Editor so that it exists as a part of the document, as opposed to a reference to the image in another location? It has to be something that will work in Internet Explorer 11 (I know... we hate it too), Edge and Chrome. I don't mind building a custom tool to help in the process, but I'd just need a little direction on how to make that happen. Ideally, we'd like for them to be able to copy/paste into the Editor, but we would be OK with it if we have a button to trigger a file chooser and they could select the desired image. We're open to whatever suggestions that allow our users to embed the images.
Thanks so much for any help you guys might be able to give.

We have a grid that has different columns for different user roles. We have a requirement to persist filters. The problem we are running into is that user A is an admin and sees their specified columns and logs out, user B who is not an admin on the same computer is seeing the admin columns instead of the columns they are supposed to see. Is there any way to just persist filters?
The secondary problem is when we publish updates to the website the grid does not reflect our changes due to the persistence. This could be a serious problem.
We are using:
$(document).ready(function () {
$("div[data-role='grid']").each(function (index, element) {
var grid = $(element).data("kendoGrid");
var key = location.pathname + '-' + element.id;
var options = localStorage[key];
if (options)
{
grid.setOptions(JSON.parse(options));
}
grid.dataSource.read();
})
})
$(window).on('beforeunload', function () {
$("div[data-role='grid']").each(function (index, element) {
var grid = $(element).data("kendoGrid");
var key = location.pathname + '-' + element.id;
localStorage[key] = kendo.stringify(grid.getOptions(grid.getOptions());
})
})

Hi Telerik,
When I edit certain html, the radeditor scrolls the editing pane (div or iframe) to a position that does not show the cursor.
In IE the pane is usually scrolled mid way or to the end of the text.
In Chrome, it scrolls the pane so the cursor is on line 1, which is annoying as a scroll should not happen unless the cursor is off screen.
Test Case:
<p><!-- collumn 1 --> <br />
<flow inset="0,0,0,0" width="30%"> <br />
<flow inset="0,0,0,0" firstlineindent="1"> <br />
<material fontstyle="bold"> <br />
<mattext>asdasd as asd</mattext> <br />
</material> <br />
</flow> <br />
<flow inset="0,0,0,0"> <br />
<response_lid ident="aorta_${ItemId}" rcardinality="multiple"> <br />
<render_choice> <br />
<flow_label inset="0,0,0,0"> <br />
<response_label ident="36"> <br />
<flow_mat orientation="horizontal" inset="0,0,0,0"> <br />
<flow_mat inset="0,0,0,0"> <br />
<material> <br />
<mattext>36.</mattext> <br />
</material> <br />
</flow_mat> <br />
<flow_mat inset="0,0,0,0"> <br />
<material> <br />
<mattext>asd sasda sd a</mattext> <br />
</material> <br />
</flow_mat> <br />
</flow_mat> <br />
</response_label> <br />
</flow_label> <br />
<mattext>dfg hjgh dfgdfg</mattext> <br />
</material> <br />
</flow_mat> <br />
</flow_mat> <br />
</response_label> <br />
</flow_label> <br />
<flow_label inset="0,0,0,0"> <br />
<response_label ident="43"> <br />
<flow_mat orientation="horizontal" inset="0,0,0,0"> <br />
<flow_mat inset="0,0,0,0"> <br />
<material> <br />
<mattext>43.</mattext> <br />
</material> <br />
</flow_mat> <br />
<flow_mat inset="0,0,0,0"> <br />
<material> <br />
<mattext>ty bfdgh ghuy67 hgfdf</mattext> <br />
</material> <br />
</flow_mat> <br />
</flow_mat> <br />
</response_label> <br />
</flow_label> <br />
<flow_label inset="0,0,0,0"> <br />
<response_label ident="44"> <br />
<flow_mat orientation="horizontal" inset="0,0,0,0"> <br />
<flow_mat inset="0,0,0,0"> <br />
<material> <br />
<mattext>44.</mattext> <br />
</material> <br />
</flow_mat> <br />
<flow_mat inset="0,0,0,0"> <br />
<material> <br />
<mattext>45g dfgsdfgdfsgdd</mattext> <br />
</material> <br />
</flow_mat> <br />
</flow_mat> <br />
</response_label> <br />
</flow_label> <br />
</render_choice> <br />
</response_lid> <br />
</flow> <br />
</flow> <br />
<!-- end collumn 1 flow --> <br />
<!-- collumn 2 --> </p>
Any help would be great! Thanks.
Robert.
