[css-d] datetimepicker

2016-02-06 Thread D Mark Weiss
Using this as a datetimepicker function with Bootstrap. 

When you click on the icon to present the calendar, it autonmatically inserts 
the current date into the field. I would prefer to only insert a date when a 
click occurs on the calender itself. 

I have read the documentation and can’t seem to figure out how to make that 
happen. 

Thanks in advance for your help.

Mark



https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js&quot</a>;>
https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js&quot</a>;>



















https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.3/moment.min.js&quot</a>;>
https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.14.30/js/bootstrap-datetimepicker.min.js&quot</a>;>

$(function () {
$('#datetimepicker1').datetimepicker({
format: 'MM/DD/', 
  });
});
 $(function () {
$('#datetimepicker2').datetimepicker({
format: 'MM/DD/', 
  });
});







DO NOT SEND BRIAN BELLAND 
ANY ATTACHMENTS!!

DO NOT SEND ATTACHMENTS 
WITH STUDENT DATA! EVER!

D. Mark Weiss
PhD Student
Research Assistant - Dr. Brian Belland
Instructional Technology and Learning Sciences
Utah State University





__
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

[css-d] .active

2015-09-20 Thread D Mark Weiss
How do I use JavaScript to change the status of a bootstrap button to .active. 
I'm happy to read a link. I haven't found one. 




Mark Weiss 
Mobile-435.363.6363

To reach a goal you have never before attained you must do things you have 
never before done"  Elder Scott
__
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] rotating divs and text within a wrapper div

2015-01-28 Thread D Mark Weiss
I have tried numerous ways to create a wrapper div and rotate a series of divs 
containing text so that the rotated text always lines up on the bottom of the 
wrapper div. Whenever I do this, the entire wrapper div rotates too. 

In this example. I it works except the boxes are not next to one another. 
Overlapping I think is what I want. I just don't know how to get there. In 
order to overlap the boxes so that the text lines up stacked horizontally, do I 
have to do some kind of position thing? 



html xmlns=http://www.w3.org/1999/xhtml http://www.w3.org/1999/xhtml
head
   
style type=text/css
.divOuter{
display:inline;
text-align:bottom;

 
}

.divInner1, .divInner2, .divInner3, .divInner4{
-webkit-transform: rotate(-60deg); 
-moz-transform: rotate(-60deg);
border: 1px dashed;
float:left;
width:160px;
height:20px;
margin-left:3px;
margin-right:3px;
position:relative;
}
/style
/head
body
div style=margin-top:50px;position:fixed;
div class='divOuter'
div class='divInner1'First DIV/div
div class='divInner2'Second DIV/div
div class='divInner3'Third /div
 div class='divInner4'fourth/div
/div
div




/body
/html
__
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Floating Window

2014-03-28 Thread D Mark Weiss
I have a tabbed page and on some of them, I want to have the user click an edit 
link and have a a dialog or window open up on top of the tabs, kind of like 
floating, and have the edit stuff in that floating window. The after the edit, 
click the save button, and then have the window close and we are back on the 
tabs page. 

Some of the implementations that I have seen kind of have a black or greyed out 
border and in the top right corner have an X for closing the floating editing 
window. 

I keep searching for this on the web, but I guess I am not calling it the right 
name. 

Can someone point me in the right direction. 

Thanks.
__
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Redefine All Images

2012-05-11 Thread D Mark Weiss

In our site, we want every image to assume this CSS

{
float:right;
padding-left:15px;
}


Is there a way to make every image  put into the site to assume this definition by 
redefining the img   tag

like 

.img
{
float:right;
padding-left:15px;
}


That doesn't seem to work. 

Thanks
Mark
dadwe...@me.com
__
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/