Quantcast
Channel: Telerik Forums RSS
Viewing all 84751 articles
Browse latest View live

can't see hebrew, change column display name

$
0
0

Hello,

First, I set a few items in datagrid whic some contains hebrew content.

The problem is that I see xxxx xx xxxx instead of the hebrew characters .

 

Second, I set datagrid itemsource to objects list.

I would like to change the display name to another names in hebrew.

What do I need to do for that? 

What I tried so far is change column 'name' property like following:

<telerikDataGrid:DataGridTextColumnPropertyName="dateFixed"Name="תאריך"/>

 

Thanks :).


PDF file fails to process

$
0
0

I am using the example from: https://demos.telerik.com/aspnet-core/pdfviewer/index

No matter what PDF file I put in the code I get the message "PDF file fails to process".  If I use the dialog on the PDF Viewer and go to the exact same PDF file it opens correctly.  Any idea what I am missing?

From Layout.cshtml:

<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>@ViewData["Title"] - TestPDFApp</title>
    <script src="~/js/site.js"></script>
    <script src="https://kendo.cdn.telerik.com/2019.2.619/js/jquery.min.js"></script>
    <script src="https://kendo.cdn.telerik.com/2019.2.619/js/jszip.min.js"></script>
    <script src="https://kendo.cdn.telerik.com/2019.2.619/js/kendo.all.min.js"></script>
    <script src="https://kendo.cdn.telerik.com/2019.2.619/js/kendo.aspnetmvc.min.js"></script>
    <script src="~/lib/bootstrap/dist/js/bootstrap.js"></script>
    <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
    <link rel="stylesheet" href="~/lib/kendo-ui/styles/kendo.common.min.css" />
    <link rel="stylesheet" href="~/lib/kendo-ui/styles/kendo.rtl.min.css" />
    <link rel="stylesheet" href="~/lib/kendo-ui/styles/kendo.bootstrap.min.css" />
    <link href="~/css/site.css" rel="stylesheet" />
</head>

 

From my View:

<script src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.2.2/pdf.js"></script>
<script>
    window.pdfjsLib.GlobalWorkerOptions.workerSrc = 'https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.2.2/pdf.worker.js';
</script>
<div id="example">
    @(Html.Kendo().PDFViewer().Name("pdfviewer")
                //.PdfjsProcessing(pdf => pdf.File(Url.Content("~/wwwroot/PDF/Issue Definitions.pdf")))
                .PdfjsProcessing(pdf => pdf.File(Url.Content("https://demos.telerik.com/kendo-ui/content/web/pdfViewer/sample.pdf")))
                .Height(1200)
    )
</div>
<style>
    html body #pdfviewer {
        width: 100% !important;
    }
</style>

Giving up on Telerik, It just does not work, What Am I doning Wrong??

$
0
0

Hi Viktor,

 

Thank you again for your example. But it still did not work for use.

I think it is pretty clear that telerik is not the product that we thought it was and will most likey be cancelling or subscription as it just does not work in our application. It boggles my mine that a simple date picker is so elusive but it has been for a long time.

 

I looked at you code and mirrored you example onto our code with no success.

 

My guess is that you cannot add telerik to a program that was built without it.

It make me sad be cause we wanted to update our mvc with some nice looking telerik controls.. but its clear telerik does not work.

Thanks again for trying to help.

Giving up on Telerik, It just does not work, What Am I doning Wrong??

$
0
0

Also just you that you know. I followed this example to the letter as well and it all just does not work. I get a box with not date selector.

 

Giving up on Telerik, It just does not work, What Am I doning Wrong??

$
0
0

Sorry... I forgot the post the link https://docs.telerik.com/aspnet-mvc/getting-started/asp-net-mvc-5

This example should really be updated as it does not work.

Following the Telerik Example What does this mean

$
0
0

I was looking the telerick date time picker example found here: 

https://docs.telerik.com/aspnet-mvc/getting-started/asp-net-mvc-5

It all failed to work for me. But this part of the example's instructions are confusing....

What does this mean?

 

Use CDN Services
Below are listed the steps for you to follow when including the Telerik UI for ASP.NET MVC JavaScript and CSS files from CDN.
Replace kendo ui version from the following code snippets with the current version of the product—for example, 2013.2.918.

 

 

My guess this is there way of saying that the example will not work but look at something from 2013???

This is beyond frustrating. Why can they post an example that works??

What part of the example is wrong... This is why I quit trying to user this telerik nonsense.

But maybe some one can explain?

 

Thanks in advance 

Cert Install Error

$
0
0

Hi Byron,

My sincerest apologies, I missed typed. I meant to install the certificate in the User's Trusted Root Store instead of the Machine's Trusted Root Store. I have seen issue others were having with this.

One option that can be configured is to set the Clear server certs on exit checkbox inside the Tool > Fiddler > Options > HTTPS > Certificate provider dialog. See the below screenshot for where to find this. This should clear out any certificates and allow for a fresh start.

Please give this a try and let me know the results. Thank you.

Regards,

Eric R | Technical Support Engineer
Progress Telerik

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items

Programmatically added RadPane Size

$
0
0

I finally decided on a simpler route, to make a Window usercontrol with it in it.

Would still like to know how to overcome the issue as I/others might need it in future and it would be nice to persist with the persistenceframework with less plumbing.


Clear Selected Items

$
0
0

Have a bit of an odd situation. I have two AutoCompleteBoxes. Both are bound are in a near-identical manner, the only difference being that the 2nd one is bound to a filtered view of the data bound to the 1st box:

Box 1: ItemsSource="{Binding SearchRecords}" DisplayMemberPath="SearchValue" SelectedItem="{Binding SearchBox1SelectedItem, Mode=TwoWay}"

Box 2: ItemsSource="{Binding SearchRecords2View}" DisplayMemberPath="SearchValue" SelectedItem="{Binding SearchBox2SelectedItem, Mode=TwoWay}"

After the second selection is made, I take some query actions, which work correctly. I then attempt to blank both boxes to clear the slate for the next user action:

SearchBox1SelectedItem = null;
SearchBox2SelectedItem = null;

Both property setters handle this in the same way:

if (_searchBox1SelectedItem != value)
                {
                    _searchBox1SelectedItem = value;
                    RaisePropertyChanged();
                }

 if (_searchBox2SelectedItem != value)
                {
                    _searchBox2SelectedItem = value;
                    RaisePropertyChanged();
                }

The effect on the SearchBox1 is as expected, i.e. the box clears itself, as shown in its properties as per AutoCompleteBox1.jpg, attached.

But this does not happen as expected for SearchBox2. Instead, it seems to have made an aborted attempt to clear itself, as per AutoCompleteBox2.jpg. Note how the SelectedItem value for SearchBox2 has been nullified, as intended, but it retains 1 record in its SelectedItems list, and also note how its SearchText, which is set to "Bil", should in fact be "Billy Joel", which is what still appears in the Search Box.

Any ideas?

 

Make section fill page

$
0
0

i have some problem Nasko's ,

my telerik report detail section inside table growing time  footer and detail section between some space growing how to stop that?

 

Node Inspector: Add functionality

$
0
0

Hi Eric R,

thanks for your reply.

Unfortunately the users won't be able to know the value of the paramter to be added to the href. Therefore I was trying to add the parameter programatically "onclick" of the checkbox in question.

Although this might not be best practice, but is there a way to add a new "nodeAttribute" (or what ever they're called internally) to the editor, which I could include into the module NodeInspector using the hack referenced in the previously mentioned articel, like so:

Telerik.Web.UI.Editor.Modules.RadEditorNodeInspector.prototype._nodeAttributesArray["A"] = [
    // the default ones for an a-tag/link
    "href", "target", "LinkManager", "id", "title", "className",
    // my custom checkbox
    "myCheckboxElement"
];

 

I could then use javascript to alter the href "onclick" of that checkbox. - Otherwise I might have to go the route of a custom module specifically for the a-tags.

 

Thanks again for your help.

Regards,
Matthias

can't see hebrew, change column display name

$
0
0
Hello,

We are aware of this issue and we have it logged in our Feedback portal. You can follow the item on the link below:

https://feedback.telerik.com/xamarin/1366163-datagrid-android-uwp-some-languages-are-not-properly-rendered-by-skiasharp-elements

Mainly, the issue is related to the following issues in SkiaSharp library: https://github.com/mono/SkiaSharp/issues/232 and https://github.com/mono/SkiaSharp/issues/283

Solution:

More details about approaches you can use in order to solve the issue an be found at the following article from our documentation: DataGrid does not show some languages properly.

I hope I was helpful.

Regards,
Didi
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items

Automatically adding new row on tab loses last value

$
0
0
Hi Ankush,

By default the browser sets the focus on the next focusable element when tab is pressed. As the new row is not yet within the dom when the tab is pressed, an element outside the grid is focused. You could avoid this by preventing the default behavior of the key down event.

e.g.

grid.tbody.on('keydown',function(e){
  if (e.keyCode == 9) {
 
    if($(e.target).closest('td').is(':last-child') && $(e.target).closest('tr').is(':last-child')){
      e.preventDefault()
      $(e.target).blur();
          
     grid.addRow();
 
      
 
 
    }
  }
})

Below you will find a small sample which demonstrates the above approach:




Regards,
Georgi
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.Learn More.

RadGridView Printing Support (Without using Telerik Reporting) to Include Custom Header and Footer

$
0
0

Hi Hristo,

          How to set page type programmatically in RadPrintDocument at RadGrid Print or RadGrid  PrintPreview.

Default its coming here like Letter size, but I want to assign the type programmatically.

Page type may be A4 or A5 or any other type.

Regarding

Jamsheer

Paste in MultSelect Error

$
0
0
Hello Mina,

Here is an updated Dojo example where the alert is removed:


With it, when a comma separated values are pasted in the MultiSelect, if there are corresponding data items in the widget data source, then the items are selected. To test this, simply copy the following:
0001X, 0003X, 0005X

and then paste it in the MultiSelect. As a result, the three values will be selected.

Regards,
Dimitar
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.Learn More.

Fix number of columns in Crosstab

GridView Spinner doesn't hide away (IsBusy)

$
0
0
hii Dilyan Traykov i am filling DataGrid by using list asItemsSource ....i want to add busy indicator while loading data into it....can you please give me a sollution ?

SelectedItem Bindable in MVVM

$
0
0

Hello,

 

I managed to delete the treeviewitem item (thanks to your post), but I wanted to create a DependencyProperty that should be using the ICommand and listen to the SelectedItemChanged event on the TreeView. How can I do this?

RadGridView Printing Support (Without using Telerik Reporting) to Include Custom Header and Footer

$
0
0

Hello Jamsheer,

You can use the following approach for this: 

privatevoidRadButton1_Click(object sender, EventArgs e)
{
    RadPrintDocument document = new RadPrintDocument();
    IEnumerable<PaperSize> paperSizes = document.PrinterSettings.PaperSizes.Cast<PaperSize>();
    PaperSize sizeA4 = paperSizes.First((size) => size.Kind == PaperKind.A4);
    document.PaperSize = sizeA4;


    radGridView1.PrintPreview(document);
}

Regards,Dimitar
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.Learn More.

SelectedItem Bindable in MVVM

Viewing all 84751 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>