Looking for an IFRAME like ASP.NET Server Control [closed] - asp.net

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Does anybody knows, if there is an (free) IFRAME like ASP.NET server control ? It shoud behave like a container control, which adjust itself the width and height dependend on the browser resolution respectively the width/height of its parent control.
Background: I want to show/run a web-application inside a web-application.

Perhaps you should have a look at UFrame.
http://www.codeproject.com/KB/aspnet/uframe.aspx

Maybe the RadWindow by Telerik will suite you. You can open up 'Windows' on your page.
It has an extensive client API, so you can control the dimensions anyway you want.
http://demos.telerik.com/aspnet-ajax/window/examples/behaviors/defaultcs.aspx
I use it to open up an edit page(.aspx) that will load/save data and then close itself.

Related

Data grid written in pure JavaScript [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 months ago.
Improve this question
Is there any Data grid similar to ui-grid ( https://github.com/angular-ui/ui-grid ) written in jquery or pure JavaScript?
I need one with this set of functionality:
sort
search
horizontal and vertical scroll
grouping
inline editing
lazy load
column resizing
pinning
pagination
selection
https://jsgrids.statico.io/ is a list of JavaScript grid libraries that lets you filter. Using that site and given your requirements, the following libraries meet your specifications:
ag-Grid
Kendo UI Grid
FancyGrid
ParamQuery
I have used https://limegrid.co, vanilla javascript - has some themes looks a bit like excel.

Call now button for mobile website [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I've installed wordpress call now button plugin and activate it with phone number but not appear on any screen of mobile website.
If any one know any other plugin for this purpose i.e to place a call now button or image and user is able to call with his mobile carrier when clicked.
Also the shortcut code for this plugin when we want to add it in a template file i really appreciated.
Call Me
You might need to use callto: instead of tel: sometimes.
This answer uses jQuery to replace tel: by callto::
if (!jQuery.browser.mobile) {
jQuery('body').on('click', 'a[href^="tel:"]', function() {
jQuery(this).attr('href',
jQuery(this).attr('href').replace(/^tel:/, 'callto:'));
});
}
You should note that the above snippet was posted in June 2012. The jQuery.browser property has been removed as from jQuery 1.9 and is now available in the Migrate Plugin.
Use tel:888-888-8888
source: How to mark-up phone numbers?
All you have to do is put it in your html. That should get you started.

ASP MVC 4 - diagram tools [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for the best way to implement a real time diagram tool to use in my website. I've found a website with something similar: mentionmapp.com .. You can see the diagram on the background of the homepage, if any can give me suggestions to create something similar I'd appreciate it.
Thanks
Rather than a .NET solution, why not look at a JavaScript solution (with data fed in via JSON) as these are much more common.
http://arborjs.org/ is one I've used before and pretty popular (and free!).
There are .NET components you could use (like http://www.devcomponents.com/treegx/) but you'll have to pay for them.

Open Source Alternative to ASP.NET Commercial Uber-Grids [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
The company I work for uses an ASP.NET grid component from a commercial vendor, but won't upgrade the buggy old version we have to a newer version because of cost. Are there open-source alternatives to these Uber-Grids that we could take advantage of?
I'm specifically looking for hierarchical drill-down capabilities. I know there are some Javascript library plugins (stuff for jquery UI, etc) that could be used, but I would prefer a server-side control given the current coding conventions at my employer (server-side controls whenever possible, javascript when nothing else will work :-P )
Grid Wrapper Control using ExtJS http://www.codeplex.com/ExtJsExtenderControl
Check out the DEMO page for the grouping feature, not sure how many levels you can go in though.
Try this opensource project that extends ASP.NET GridView : http://johnsobrepena.blogspot.com/2010/01/coolgridview-new-release-resizable.html
Fixed column header, footer and
pager
Scrollable content
User-resizeable column widths (new!)
Maintains scroll position and column
widths after a postback or callback
(new!)

ASP.NET Tab Controls [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm currently attempting to create a tabbed interface in a web application, and based on my search, there aren't any 'built in' tab controls in ASP.NET. There are some in the ASP.NET AJAX downloadable toolkit, as well as a wealth of 'pay for use' third party Tab Controls.
My question is: What Tab control have you used for ASP.NET applications, and why do you use it?
You can use MultiView/Views and your own navigation to get tabs in ASP.NET.
I've used the AJAX TabControl in the past and I like it. It's pretty straight forward. It's easy enough to get to the active tab and its content.
I have used the Rad TabStrip control by Telerik and it is one of the best to work with in my opinion.
We use multiviews most of the time, or, in some cases, we build our own tab controls out of a combination of link buttons and overlapping panels and swap their visibilities based on what link button has been pressed (this may seem primative, but it works well).

Resources