Can someone point me to some sample code for working with Tridion's OData Content Delivery web service? I found a couple articles on sdltridionworld.com, but they were pretty basic.
Try this:
http://blog.building-blocks.com/using-the-sdl-tridion-2011-odata-content-delivery-service-to-display-dynamic-content
If that doesn't help, as others have suggested, please be more specific in your question.
Could you please be more specific on your question? As "Puf" mentioned if you could provide some context and what you're looking to accomplish, you might get more precised answers.
Having said that, here is link with an example code (.net) you can look at.
Related
I have asked several questions on the buddypress forum but I never get any sort of response or help. I seem to always get a valid well thought out answer on the stackoverflow community, so I am posting my question here too. Here is my original post to the buddypress forum that no one has answered. Seems like a good question that some dev could answer easily. maybe someone here has some experience or guidance and can point me in the right direction.
Hey, i was wondering I found this webpage http://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/ on editing the activity stream loop with some information on filtering the main activity wall but I am really still confused because It doesn’t seem like all the available options are listed here. For example right under it it says if ( bp_has_activities( ‘type=status’) ) :
Well ‘type=status’ is no where listed on this page and I know there are several other options available that are also not listed. So my question is what and where can I find all the available options for filtering. I am setting up some custom options for my site and I would love some help. I am familiar with php so if there is a file i can look at then I would love to know about it too.
Please Advise Thanks,
All the filters and accepted parameters are on the page you referenced (just scroll down it a little bit). For some reason in the example they use type=status when it should be object=status as that is the correct way to filter for status updates only.
You can always take a look at the actual function itself to see accepted parameters. Buddypress is much better documented in the code than on their website.
Is there documentation or a reference for the MVVM Light framework that let me know what is it capable of? After a lot of googling I've found very few things.
The primary documentation source is MVVM Light's website. Additional, documentation in form of problem solutions can be found right here on Stack Overflow. Also looking at the source code might help.
Personally, I think that both Laurent's presentation at MIX'10 and Josh Smith's article are best to start.
However, there is no explicit documentation for two reasons:
It is a free tool and writing extended documentation is a time-consuming task.
Nobody has volunteered to do so.
There is some documentation in the source code that could be extracted by using SandCastle, but I believe that the classes are reasonably self-documenting. Furthermore, in all the time I used MVVM Light I did not have the need for additional documentation, other than the documentation provided by the two sites above and the problem solutions here at Stack Overflow.
To answer your question, no there is no official documentation for the mvvm light toolkit, but I will give you the links I used myself and they were more than enough for me.
Those two conferences from laurent demonstrate the main uses of the toolkit along with general mvvm presentation. I found them really interesting and would recommend watching them if you are looking for what this toolkit is capable of.
http://channel9.msdn.com/Events/MIX/MIX10/EX14 and
http://channel9.msdn.com/events/MIX/MIX11/OPN03
Also:
http://www.galasoft.ch/mvvm/
http://mvvmlight.codeplex.com/documentation
I know the question is old, but I just stumbled over the same issue. The API docs for all platforms and as HTML and CHM are located here: http://www.mvvmlight.net/help/
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
Hey, I have a form like this:
http://jsfiddle.net/Myxqk/
Try to type something what is not an vaild e-mail address such as "4asd".
See what happens.
Is there a way to format/change this error look?
For example I don't want it all, just want the input border to pulse. Or become red.
Thanks a lot.
Have you seen this example for email field:
http://www.w3schools.com/html5/tryit.asp?filename=tryhtml5_form_email
The email validation here is not being handled by html5 but by the server.
Are you using PHP or some other framework?
The best solution in my case was:
Adding "novalidate" to my form tag (so I can still stick to "email" input).
Using jQuery to validate (animate()).
Thanks a lot guys! As I thought in the beginning there is no way of really getting into HTML5 core functions like this one. Sad, but hope they'll fix it. If not it's going to be useless where design counts!
#input {border-color: red;}
?
HTML5 is not widely adopted, so you should not rely on browser behaviour for a spec that isn't even finalized.
Therefore, just have custom JS/CSS which does what you want.
i am new for asp.net. i want to develop a simple web application(asp.net+c#) which display
questions and multiple choice answers and calculate result. i want to know which one is the best way for me to do it.
i want to use linq to sql.
please guide me.
thanks in advance and sorry if you feel my question style is bad.
Here is where you can start
http://www.asp.net/get-started
http://www.asp.net/web-forms
http://www.asp.net/mvc
http://www.codeproject.com/KB/aspnet/
Start by this examples...
Oh and here is something very close to what you ask
http://www.codeproject.com/KB/aspnet/MultipleChoiceExam.aspx
I want to integrate the same registration process that Stack Overflow has into my website. Does anyone know if this is possible and any ways I can go about doing this?
I am using ASP.NET MVC for my site implementation. It would be awesome if someone could point me in the right direction with some examples etc.
You can find out how to use OpenID here.
There's also DotNetOpenAuth.
Edit:
Andrew Arnott also pointed out in the comments that there is a pretty awesome OpenID selector control available. The Stack Overflow question it relates to is here.
Thanks Andrew!