It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I have a custom button in the ribbon.
When i select any item (Component or Page) in tridion and click the custom button, i should be able to get the tcmid of the selected item.
var selectedID = selection.getItem(0);
in the _execute method, from my tutorial at http://www.curlette.com/?p=279
Extensions.WhoDidIt.prototype._execute = function WhoDidIt$_execute(selection, pipeline) {
Please spend some time (around 1 week) looking at existing examples and solutions, including my GUI Extension tutorials. Please do make a strong effort and try for yourself before quickly posting here - you will learn more and have a greater understanding.
GUI Extension Samples:
http://jaimesantosalcon.blogspot.com/
http://tridionfanboy.wordpress.com/
http://albertromkes.com/
http://yoavniran.wordpress.com/
http://sdltridionworld.com/articles/sdltridion2011/tutorials/GUIextensionIn8steps.aspx
http://sdltridionworld.com/community/2011_extensions/linkedin.aspx
http://www.curlette.com/
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need to write a project in Qt that will show a calendar in which day-cells are buttons that allow you to see and add some tasks you have to do. Because I am kind of new to Qt and don't have much time to complete this task I was wondering if anyone could tell me which libraries should I use. Will QtCalendarWidget be a good choice? Does it have a possibility to make cells react like separate buttons? Thanks for your help.
QtCalendarWidget is good choice that fits your needs.
This widget has signal:
void QCalendarWidget::clicked ( const QDate & date ) [signal]
Which you can link to what you want, as you do it in Qt.
Read more at official documentation
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to create one Online Exam System where student can attend Exam and there will be options below(in radiobutton) which he/she can choose as answer by using Asp .Net. In this process, Next and Previous should be worked properly. Please suggest me some idea or Code in this Reference.
Thanks..
Following are links from where you can get ideas for Online exam system.
http://onlineexam.codeplex.com/\
http://ooes.codeplex.com/
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i need to download the HTML source code of a particular website.website is created with language asp.net.is there is any software .i don't know how to do can any one please help me.Thank you
You can't. Asp.Net is a compiled language, what you get in your browser is the output of the compiled dll's that conform the application.
In most browsers, to get the HTML, you can right click -> 'save as...' or right click -> 'show source code' -> right click -> 'save as...'.
This won't get you the asp.net source code, however, just the resulting static page.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can i show an image on whole page when user click a button?
(means i have several controls on page and want to show this image over all of them)
You can write this line in button click event
ClientScript.RegisterClientScriptBlock(GetType(), "key", "javascript: document.body.background = 'Untitled.jpg'; document.body.style.backgroundRepeat = 'no-repeat'; document.body.style.backgroundPosition = '300px 300px'; ", true);
Your looking for a Modal window, there are some great jQuery plugins for that. I really like one called Reveal.
To do it yourself. Set a "position: absolute" and a "z-index" that is higher than your other elements on a div, and trigger it to show/hide with javascript and you should be fine.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have this drop down menu.It stores month, Jan-Dec. User can choose any value of the drop down menu but just one time only. Meaning, lets say previously he choose Jan, the next time if he logged in/ enter new record, he cannot choose Jan anymore or maybe remove the month permanently. Once he select the month, it will be store in session to other page. So, if you guys have any idea,suggestions, or plans, dont hesitate to leave ur answer here. Thank you.
Here are three working examples of what you're looking for:
Using jQuery:
http://jsfiddle.net/wLNZX/
With plain JavaScript:
http://jsfiddle.net/wLNZX/1/
Coded inline with the <select> tag:
http://jsfiddle.net/wLNZX/2/