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

How to use these classes?

$
0
0

Demo App says i should use other classes

FiddlerCoreStartupSettingsBuilder<FiddlerCoreStartupSettingsBuilder, FiddlerCoreStartupSettings>.RegisterAsSystemProxy()' is obsolete: 'Please use the Telerik.NetworkConnections.NetworkConnectionsManager to register the FiddlerCore Proxy as the system proxy.'

I referenced the required component, but the class is sealed so i can't create an instance of this class. Documentation covers nothing, it just says the same thing as visual studio do.

I tried to use this in the first place, because fiddler core can't set itself as a system proxy. WinHTTP service is running, still nothing. 



CommandColumn - Where can we set Button's Text

Fiddler + Proxifier error

$
0
0
Can we please contact somewhere? I can pay you about 10$ if u can help me, thanks!

Fiddler + Proxifier error

$
0
0
Look, I have a program and I want to see traffic of that, but I don’t see it by the simple method through the settings in Windows, and if I turn on the proxifixer and start the program, I see that packets go, but there are errors in my debugger charles / fiddler ( I do not see the contents of the packages) I need to see what is stored in these packages, really need help with that

Can fiddler capture and save videos or streams

$
0
0

Hello,

I'm new to fiddler.

Is it possible to capture and save the videos or stream running on the browser?

How to achieve that if possible?

 

Thanks in advance.

 

Fiddler + Proxifier error

$
0
0

Contact me at nijazmuratovic@yandex.com. Just tell what program, and show screenshot of current proxifier settings and current lan proxy used in internet options in control panel.

RadMenuItem / Client Side / change style properties

$
0
0

Hi Peter -

I'm not sure this approach will work for me because of two things. 

1) I have this implemented in a RadGrid so it needs to be dynamic to each row in the grid. 

2) The items will change depending on the grid row selected, meaning the parent nodes will be potentially different as well.  So Row 1 might have 3 master categories each with children, but Row 2 might have only one master category with some children.

I am struggling with this implementation here.  Am I doing this wrong altogether?  It feels like it is 90% there but I just can't get this simple styling to apply in the same dynamic manner that I am building the menus.

So when they click a row on the RadGrid that is when we initialize the menu based on a data item in that row, which indicates all of the options that should be enabled in this instance of the RadContextMenu

<telerik:RadGridID="rgExample"runat="server">
    <ClientSettings>
        <ClientEventsOnRowContextMenu="RowContextMenu"/>
        <SelectingAllowRowSelect="true"/>
    </ClientSettings>
    <!-- Other Grid Items Here -->
</telerik:RadGrid>
<telerik:RadContextMenuID="menuContext"runat="server"OnItemClick="menuContext_ItemClick"/>

 

Then we have the client side script RowContextMenu which is called on the OnRowContextMenu event which I pasted earlier in the post.  It then reads one of the values from the dataItem so it knows which context parents/children to build for this particular row.

All of this works perfectly.  I just want to style each particular row slightly different to accentuate a default option for the user, but it will be different on each row.

From your example it looked like you have a static RadContextMenu which is not the case for me due to the dynamic nature of its implementation in the RadGrid.

Am I going about this approach wrong?

Thanks in advance

Updating model on start/end date changing

$
0
0

As far as I can tell binding is not an option with DateRangePicker.  Instead I believe you have to handle the change event and update your model from there.   However for the life of me I can't work out how to do this.  This is what I currently have:

@Html.HiddenFor(model => model.EarliestDeliveryDate)
@Html.HiddenFor(model => model.LatestDeliveryDate)
@(Html.Kendo().DateRangePicker()
    .Name("deliveryDate")
    .Range(r => r.Start(Model.EarliestDeliveryDate).End(Model.LatestDeliveryDate))
     .Messages(m => m.StartLabel("Earliest").EndLabel("Latest"))
    .Events(events => events.Change("onDeliveryDatesChange"))
)
 
<scripttype="text/javascript">
    function onDeliveryDatesChange() {
        var range = this.range();
        if (range.start && range.end) {
            var earliest = $('#EarliestDeliveryDate');
            var latest = $('#LatestDeliveryDate');
            earliest.val(range.start);
            latest.val(range.end);
        }
    }
</script>

 

The values are getting updated on the hidden fields but this is not getting reflected on the model.  I think this is because the format of the dates that are returned in range.start/end is wrong.  It could also be something completely different. Can you please give me an example of how to do this and I'd suggest also updating your documentation with the example too.

Also if Name is not set then rendering utterly fails and no good message is given.  This is not intuitive as other controls don't seem to need this value setting.

 

 

 


How to get old parent and new parent of a task after reordering(drag and drop) it?

$
0
0

Thank you so much Dilyan! That is definitely what I was looking for.

There is one more thing that you may have a solution for, is there any event or any way that I can access to a task when I draw a relation from it to another(task)?

Results not being displayed in cascading MultiSelectComboBox in Grid

$
0
0

I have a grid:

@(Html.Kendo().Grid(Model.Lines)
    .Name("lines")
    .Columns(columns =>
    {
        columns.Bound(p => p.Item).ClientTemplate("#= (Item.Name) ? Item.Name : '' #");
        columns.Command(command => command.Destroy());
    })
    .ToolBar(tools =>
    {
        tools.Excel();
        tools.Pdf();
        tools.Save().HtmlAttributes(new { style = "float:right" });
        tools.Create().HtmlAttributes(new { style = "float:right" });
    })
    .AllowCopy(true)
    .Excel(excel => excel.FileName("LinesExport.xlsx"))
    .Editable(editable => editable.Mode(GridEditMode.InCell))
    .Navigatable()
    .Sortable()
    .Filterable()
    .DataSource(dataSource => dataSource
        .Ajax()
        .Model(model =>
        {
            model.Id(i => i.Id);
            model.Field(i => i.Id).Editable(false);
            model.Field(i => i.ItemId).Editable(false);
            model.Field(i => i.Item).Editable(true).DefaultValue(new Item { ItemId = "", ItemGroup = "", Name = "", SearchName = "" });
        })
        .Batch(true)
        .ServerOperation(false)
    )
)

 

with a custom editor on a field:

@model Item
 
@(Html.Kendo().MultiColumnComboBoxFor(m => m)
    .Placeholder("Select item")
    .DataTextField("Name")
    .DataValueField("ItemId")
    .Columns(columns =>
    {
        columns.Add().Field("ItemId").Title("Item Number").Width("180px");
        columns.Add().Field("Name").Title("Name").Width("180px");
        columns.Add().Field("SearchName").Title("Search Name").Width("180px");
        columns.Add().Field("ItemGroup").Title("Item Group").Width("180px");
    })
    .Filter(FilterType.Contains)
    .FooterTemplate("Total #: instance.dataSource.total() # items found")
    .Height(400)
    //.Events(events => events.Change("onComboBoxChange"))
    .DataSource(source => source
        .Read(read =>
        {
            read.Action("GetItems", "Home").Data("getItemsData");
        })
        .ServerFiltering(false)
    )
    .CascadeFrom("CustomerId")
)

 

The custom editor displays correctly for the Item field.  When Customer changes (happens elsewhere) it is cascading properly and the read action is getting called.  The read action is returning results (can see this by inspecting the result in the RequestEnd event) but no results are actually displayed in the MultiColumnComboBox.  I have another MultiColumnComboBox elsewhere on the page that is not in the grid that cascades from the same value and does an almost identical lookup and it works fine.

 

What am I missing here?  or is this a bug and if so how do I work around it?

 

 

 

How to close EditForm (UserControl) after update or cancel

$
0
0

Kudos to you sir 6 years 3 weeks and 3 days later :) Thank you this was really annoying me!

Telerik I think this should be put in your documentation or resolved in a future build - thank you.

Using Sock5 from SSH Tunnel Port Forwarding Error

https://newsletterforhealth.com/zederex/

$
0
0
Zederex A bigger  size and of direction having the potential to ultimate longer for the duration of  will surely make it not possible for your vast other to no longer have reached an orgasm on every occasion you have intercourse. . She doesn't attain a couple of screaming orgasms frequently. For a female to attain multiple and screaming orgasms often, that may be a inform-inform signal that her guy is packing a totally high-quality endowment indeed! . And right here is the more severe one in all them all... She flat-out tells it for your face! Ouch!

https://supplementeffects.com/garnorax-male/

$
0
0
Dependable Muslim is discovered to be enormously mighty as a remedy for reproductive issues. This acts as a robust remedy for curing male affectivity, and Garnorax extract is a generally prescribed natural remedy for low sperm rely, a difficulty which is often referred to as oligospermia. Reliable Muslim works towards boosting Garnorax production of sperms.

Wrong popup size using bootstrap theme

$
0
0

a popup opens a little bit wider than screen what cause skills

 

https://dojo.telerik.com/AzOHeDIx/3

 

could you please advise how to proceed?

 

Thx Alex


Rad Diagram with "no Fill" behaviors

$
0
0
Hi!

When creating a Rad Diagram shapes (Rectangle, Circle etc..) with "No fill" [only outline] Is it possible to make it selectable only by pin pointing the outline, rather than selecting it inside the shape? [Same Behaviour as Microsoft PPT].

~ We Can add the Cursor behavior for the entire rad diagram but not for the outline/inside the shape.

I've added a screenshot demonstrating the behavior.


Thanks!

Fiddler.BCCertMaker> Failed to create certificate

$
0
0

For the time being, we've opted for a workaround that attempts to access the key container before starting the proxy and deletes the corrupted file if a CryptographicException is thrown.

https://github.com/FailedShack/USBHelperLauncher/commit/33d2f825e447d416b678415581fbd8bc03175182


Problem with RadButton and Windows 10 Version 1809

$
0
0

Hi Lance, I've worked with your suggestions and had no luck, so I decided to start a fresh project and figure out at what point the project actually breaks. It is when I change the target version of Windows to version 1809 in the UWP project. After that, I get a run-time error with any RadButton.

Steps to re-create:

1) Started a new project with the normal Xamarin template (NOTE: I did NOT use the telerik template, as I need to be on .NET Standard 2.0 and not .NET Framework x.x.x

2) I installed latest Telerik UI for Xamarin (2019.1.318.1)

3) Added two lines of code into the Common code's MainPage.xaml to get this:

---------------------------

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:local="clr-namespace:App1"
             xmlns:telerikInput="clr-namespace:Telerik.XamarinForms.Input;assembly=Telerik.XamarinForms.Input"
             x:Class="App1.MainPage">
    <StackLayout>
        <!-- Place new controls here -->
        <Label Text="Welcome to Xamarin.Forms!" 
           HorizontalOptions="Center"
           VerticalOptions="CenterAndExpand" />
        <telerikInput:RadButton Text="RadButton Test"/>
    </StackLayout>
</ContentPage>

-------------------

So far, so good. All worked.

4) Upgraded Xamarin.Forms all the way to it's Latest stable version (3.6.0.264807) across entire platform .. still all good.

5) Upgraded Microsoft.NetCore.UniversalWindowsPlatform from the version it was on from the template (6.1.?) to 6.2.8 .. still all good.

6) Like my other project, I installed SkiaSharp.Svg version 1.60.0 for App1.csproj only. Still RadButton worked fine.

7) Changed the target version of App1.UWP.csproj from Win10 16299 to version 1809 (build 17763).

This is where I receive the run-time error during what appears to be the InitializeComponent() method in MainPage.xaml.cs

8) To further isolate the issue, I removed the SkiaSharp.Svg nuget. Same problem exists, so it has to be because I'm targeting 1809.

9) I noticed Telerik UI was still using SkiaSharp version 1.59.3 as a dependency, so as a further test, I installed SkiaSharp version 1.68.0 directly into every project. Same issue.

10) I noticed that under Telerik UI, SkiaSharp was using 1.68.0 but SkiaSharp.Views.Forms was still 1.59.3, so I installed SkiaSharp.Views nuget version 1.68.0 also. I received a warning that it was restored using .NET Framework 4.6.3 instead of .NET Core and may not be compatible. I noticed Telerik UI still listed SkiaSharp.Views.Forms as 1.59.3 after this. Screenshot attached. No luck when running.

11) I downgraded the Windows 10 Target Version to 1803. It worked as expected.

As a final test, I started another project using Telerik's Xamarin template, checked, it was targeting 1809 by default. I built and ran, everything worked fine. I replaced the default label with this RadButton: <telerikInput:RadButton Text="RadButton Test"/>

in to the portable code's MainPage.xaml and did nothing else. Project built and had the same run-time error.

I believe this strips the problem down to it's essence. It is definitely a problem with something inside RadButton when targeting version 1809.

 

 

 

 

Problem with RadButton and Windows 10 Version 1809

$
0
0
@Lance: FYI I went ahead and started a support ticket. I uploaded the test project as a .zip

when insert ordered list and then use shift + enter to create new line, editor sends the data with no space

$
0
0

Thank you Ivan,

After some investigations, I noticed that the issue is coming from HTML Agility pack which removes break tag close.

I thought this could be useful to share if anybody else experiences the same:

https://html-agility-pack.net/knowledge-base/5556089/html-agility-pack-removes-break-tag-close

solution:

var doc = new HtmlDocument();

HtmlNode.ElementsFlags["br"] = HtmlElementFlag.Empty;

doc.OptionWriteEmptyNodes = true;

Cheers,

Viewing all 67686 articles
Browse latest View live


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